-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
128 lines (106 loc) · 2.77 KB
/
Gemfile
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
source 'http://rubygems.org'
gem 'rails', '3.2.13'
gem 'active_model_serializers'
gem 'bcdatabase', '~> 1.0'
gem 'aker', '~> 3.0'
gem 'aker-rails'
gem 'case'
gem 'celluloid', '>= 0.12.0'
gem 'chronic'
gem 'clockwork'
gem 'comma'
gem 'dante'
gem 'fastercsv', :platform => :ruby_18
gem 'haml', '~> 3.1'
gem 'jsv.rb'
gem 'lograge'
gem 'pg'
gem 'ncs_navigator_authority', '~> 1.2'
gem 'exception_notification', :require => 'exception_notifier'
gem 'paper_trail', '~> 2'
gem 'ransack', '0.6.0'
gem 'foreman'
gem 'foreigner'
gem 'facets', :require => false
group :assets do
# sass-rails 3.1.6 induces indefinite recursion during
# assets:precompile under capistrano.
# Related (but not exactly the same problem we saw):
# https://github.com/rails/sass-rails/commit/0b435834bc37e26c016f2d29885ca3bfe08ae827
gem 'sass-rails', "~> 3.2.0", "!= 3.1.6"
gem 'compass-rails'
gem 'coffee-rails', "~> 3.2.0"
gem 'uglifier'
end
# jQuery and jQuery UI should be synced with surveyor
# jQuery 1.9.0
gem 'jquery-rails', '2.2.0'
# jQuery UI 1.10.0
gem 'jquery-ui-rails', '4.0.2'
gem 'ncs_mdes', '>= 0.11.0'
# If you change surveyor, change the instruments project also
gem 'surveyor', :git => 'git://github.com/NUBIC/surveyor.git', :ref => '98225cd95b23647f8c9818b730c37ccb5e043306'
gem 'psc'
gem 'ncs_navigator_configuration', '~> 0.4'
gem 'sidekiq'
gem 'state_machine'
gem 'state_machine-audit_trail'
gem 'uuidtools'
gem 'will_paginate'
gem 'faraday'
gem 'mustache'
gem 'redis'
group :development do
gem 'capistrano'
gem 'debugger'
gem 'awesome_print'
end
group :osx_development do
gem 'rb-fsevent'
end
group :staging, :production do
gem 'therubyracer'
end
gem 'ncs_mdes_warehouse', '0.15.0.pre5'
gem 'aker-cas_cli', '~> 1.0', :require => false
gem 'dm-ar-finders', '~> 1.2.0'
group :development, :test, :ci do
gem 'annotate', '~> 2.5.0'
gem 'rspec-rails', '~> 2.12.0'
gem 'guard'
gem 'guard-cucumber'
gem 'guard-rspec'
gem 'guard-coffeescript'
gem 'guard-livereload'
gem 'guard-bundler'
gem 'jasmine'
gem 'perftools.rb'
gem 'ci_reporter'
gem 'pry'
gem 'pry-debugger'
end
group :test, :ci do
gem 'cucumber', '~> 1.1.9'
gem 'cucumber-rails', :require => false
# See https://github.com/bmabey/database_cleaner/pull/119
gem 'database_cleaner',
:git => 'git://github.com/rsutphin/database_cleaner.git', :branch => 'dm-pg-single-trunc'
gem 'hana'
gem 'shoulda'
gem 'factory_girl', '~> 2.6'
gem 'simplecov', :require => false
gem 'pickle'
gem 'vcr', '~> 2.4'
gem 'fakeweb'
gem 'webmock', :require => false
gem "spork", "> 0.9.0.rc"
gem "guard-spork"
gem 'capybara'
gem 'rack-test'
platform :ruby_19 do
gem 'test-unit', '= 2.4.8', :require => 'test/unit'
end
end
group :test do
gem 'launchy' # So you can do Then show me the page
end