forked from fdietz/team_dashboard
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathGemfile
More file actions
51 lines (38 loc) · 1023 Bytes
/
Gemfile
File metadata and controls
51 lines (38 loc) · 1023 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
source "https://rubygems.org"
gem "rails", "~> 4.0.0"
# required by newrelic_api gem
gem "activeresource", "~> 4.0.0"
gem "sass-rails", "~> 4.0.0"
gem "bootstrap-sass", "~> 2.3.2"
gem "bootswatch-rails"
gem "mysql2"
gem "json"
# on windows replace with thin gem
gem "unicorn"
gem "faraday"
gem "faraday_middleware"
gem "multi_xml"
gem "libxml-ruby"
gem 'complex_config', github: 'flori/complex_config', ref: 'ffb286c70a206fab017aa975a290b69867744dea', require: 'complex_config/shortcuts'
gem 'tins', require: 'tins/xt'
# see app/model/sources/number/jenkins_game.rb
gem "nokogiri"
# see app/model/sources/number/new_relic.rb
gem "newrelic_api"
# assets
gem "therubyracer", '0.12.1'
gem "uglifier"
group :test, :development do
gem "byebug"
gem "rspec-rails", '~> 2.99'
gem "factory_girl_rails"
gem "mocha", :require => false
end
group :development do
gem "better_errors"
gem "binding_of_caller"
gem "foreman"
end
group :production do
gem 'rails_12factor' # remove if not deploying on heroku
end