forked from theodi/open-data-certificate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
138 lines (115 loc) · 2.81 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
129
130
131
132
133
134
135
136
137
138
gem 'rails', '~> 3.2.21'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
# gem "mongoid", "~> 3.0.0"
# gem 'bson_ext'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass'
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'haml', '>= 3.1.3'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', :platforms => :ruby
gem 'less-rails'
gem 'less-rails-bootstrap', '~> 2.3.3'
gem 'twitter-bootstrap-rails-confirm'
gem 'uglifier', '>= 1.0.3'
end
group :test do
gem "factory_girl_rails", "~> 4.0"
gem 'sqlite3'
gem 'coveralls'
gem 'shoulda'
gem 'mocha', require: false
gem 'test-unit'
gem 'csvlint', github: 'theodi/csvlint.rb'
gem 'vcr'
gem 'webmock'
gem 'shoulda-context'
gem 'timecop'
gem 'cucumber-rails', require: false
gem 'database_cleaner'
gem 'launchy'
# From surveyor
gem 'json_spec', '~> 1.0.3'
end
group :development do
gem 'guard', '~> 1.8.3'
gem 'guard-test'
# gem 'spring', github: 'jonleighton/spring'
gem 'terminal-notifier-guard'
gem 'ruby-prof'
gem 'rails-footnotes', '>= 3.7.9'
gem 'rubyXL'
gem 'parallel_tests'
gem 'better_errors'
gem 'binding_of_caller'
gem 'letter_opener'
end
group :test, :development do
gem 'pry-byebug'
gem 'pry-remote'
gem 'rspec-rails', '~> 2.14.2'
end
group :production do
gem 'foreman'
gem 'mysql2'
gem 'airbrake'
gem 'delayed-plugins-airbrake'
gem 'logstash-event'
gem 'lograge'
end
group :surveyor do
gem 'fastercsv', '~> 1.5.4'
gem 'formtastic', '~> 2.1.0'
gem 'uuidtools', '~> 2.1'
gem 'mustache', '0.99.4'
gem 'rabl', '~>0.6.13'
end
gem 'jquery-rails'
#To serve static content / styleguide
gem 'high_voltage'
# states of the questionnaires
gem 'aasm'
# authorization
gem 'cancan'
# pagination
gem 'kaminari'
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# Use unicorn as the app server
# gem 'unicorn'
gem 'thin'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'debugger'
gem "ransack"
gem 'surveyor', path: 'vendor/gems/surveyor-1.4.0'
gem 'redcarpet'
gem "devise", "3.0.3"
gem 'dotenv-rails'
gem 'httparty'
gem 'data_kitten', github: 'theodi/data_kitten'
gem 'delayed_job_active_record'
gem 'linkeddata'
gem 'rack-linkeddata'
gem 'jbuilder'
gem 'rack-cors', require: 'rack/cors'
gem 'alternate_rails', :github => 'theodi/alternate-rails'
gem 'fog'
gem 'juvia_rails', github: 'theodi/juvia_rails'
gem 'domainatrix'
# newrelic appears to be adding significant performance problems
#gem 'newrelic_rpm'
gem 'google_drive'
gem 'memoist'
gem 'validate_url'
gem 'sidekiq'
gem 'sinatra', :require => nil
gem 'sidekiq-failures'
gem 'rails-i18n', '~> 3.0.0'