This repository was archived by the owner on Jun 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
76 lines (59 loc) · 1.35 KB
/
Gemfile
File metadata and controls
76 lines (59 loc) · 1.35 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
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
source 'https://rubygems.org'
source 'https://rails-assets.org'
gem 'rails', '4.0.3'
gem 'pg'
gem 'rails-observers'
gem 'uglifier', '>= 1.3.0'
gem 'therubyracer'
gem 'jquery-rails'
gem 'sprockets', '2.11.0' # remove
gem 'sass-rails', '>= 3.2'
gem 'sass', '3.2.14' #remove
gem 'haml'
gem 'bootstrap-sass'
gem 'react-rails'
gem 'js-routes'
gem 'bootstrap-select-rails', github: 'Slashek/bootstrap-select-rails'
gem 'rails-assets-underscore'
gem 'sidekiq'
gem 'unicorn'
gem 'addressable'
gem 'elasticsearch'
gem 'virtus'
gem 'active_model_serializers'
gem 'hashie'
gem 'mechanize'
gem 'httparty'
gem "ruby-readability", require: 'readability'
gem 'simple_form'
gem 'cocoon'
gem 'figaro'
gem 'method_decorators'
gem 'closure_tree'
gem 'enumerize'
gem 'paper_trail'
gem 'sinatra', require: false
gem 'omniauth-github'
gem 'doorkeeper'
gem 'percolator_categories', github: 'percolator-io/percolator_categories'
gem 'rollbar'
gem 'newrelic_rpm'
group :development do
gem 'capistrano'
gem 'capistrano-bundler'
gem 'capistrano-rails'
end
group :development, :test do
gem 'rspec-rails'
gem 'spork-rails'
end
group :test do
gem 'wrong', github: 'pludoni/wrong'
gem 'webmock'
gem 'factory_girl_rails'
gem 'database_cleaner'
gem 'test_after_commit'
gem 'simplecov', require: false
end
# Use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.1.2'