forked from blueberryapps/translation-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
71 lines (64 loc) · 1.4 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
source 'https://rubygems.org'
ruby '2.5.5'
gem 'active_model_serializers'
gem 'airbrake'
gem 'autoprefixer-rails'
gem 'bootstrap-kaminari-views'
gem 'bootstrap-switch-rails'
gem 'bootstrap-wysihtml5-rails'
gem 'coffee-rails', '~> 4.1.0'
gem 'devise'
gem 'dotenv-rails'
gem 'envied'
gem 'flutie'
gem 'font-awesome-rails'
gem 'has_scope'
gem 'highlight_js-rails'
gem 'jquery-rails'
gem 'kaminari'
gem 'pg'
gem 'puma'
gem 'pundit'
gem 'rack-cors', require: 'rack/cors'
gem 'rails', '4.2.8'
gem 'redcarpet'
gem 'responders'
gem 'rest-client'
gem 'sass-rails'
gem 'simple_form'
gem 'slim-rails'
gem 'uglifier', '>= 2.5.0'
gem 'virtus'
gem 'yajl-ruby', require: 'yajl'
gem 'yandex-translator'
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'capistrano', '~> 3.0.0'
gem 'capistrano-bundler'
gem 'capistrano-rails'
gem 'capistrano-rbenv'
gem 'guard-rspec'
gem 'pry-rails'
gem 'spring'
end
group :development, :test do
gem 'hashie'
gem 'factory_girl_rails'
gem 'rspec-rails', '>= 3.1'
end
group :staging, :production do
gem 'newrelic_rpm', '>= 3.9.6'
gem 'rails_12factor' #for HEROKU
end
group :test do
gem 'poltergeist', '>= 1.5.0'
gem 'database_cleaner'
gem 'simplecov', '~> 0.9.1', require: false
gem 'shoulda-matchers', require: false
gem 'webmock'
end
source 'https://rails-assets.org' do
gem 'rails-assets-bootstrap-sass'
gem 'rails-assets-jcrop', '0.9.12'
end