-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathGemfile
More file actions
49 lines (44 loc) · 1.28 KB
/
Gemfile
File metadata and controls
49 lines (44 loc) · 1.28 KB
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
source 'https://rubygems.org'
# An alternative when rubygems.org is down
#source 'http://production.cf.rubygems.org/'
gem 'rails', '~> 4.1.0'
gem 'rake'
gem 'google-spreadsheet-ruby'
gem 'pg', '~> 0.18.0'
gem 'cancancan', '~> 1.13.0'
gem 'rest-client', '~> 1.6.7'
gem 'daemons', '~> 1.2.3'
gem 'natcmp', '~> 1.4'
gem 'foreigner', '~> 1.1.6'
gem 'xml-simple', '~> 1.1.1'
gem 'transaction_isolation', '~> 1.0.3'
gem 'andand'
gem 'mimemagic', "~> 0.3.0"
gem 'rack-cors'
gem 'newrelic_rpm'
gem 'activerecord-session_store', '~> 0.1.0'
gem 'pdfkit', '~> 0.8.2'
gem "paperclip", "~> 4.3"
gem 'pghero'
group :assets do
gem 'sprockets-rails', require: 'sprockets/railtie'
gem 'jquery-rails', '~> 3.1.2'
gem 'uglifier', '~> 2.7.0'
end
group :development, :test do
gem 'rspec', '~> 3.3.0'
gem 'rspec-core', '~> 3.3.0'
gem 'rspec-rails', '~> 3.3.0'
gem 'rspec-activemodel-mocks', '~> 1.0.0'
gem 'factory_girl_rails', '~> 4.5.0'
gem 'capybara', '~> 2.5.0'
gem 'poltergeist', '~> 1.7.0'
#gem 'selenium-webdriver', '~> 2.44.0'
gem 'database_cleaner', '~> 1.5.0'
gem 'mimic', '~> 0.4.3'
gem 'ruby-prof', '~> 0.12.2' # for performance tests
gem 'launchy' # for capybara's save_and_open_page
gem 'railroady' # for doc/diagrams
gem 'simplecov'
gem 'rubocop', '~> 0.35.0', require: false
end