forked from elektronaut/sugar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
104 lines (81 loc) · 1.98 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
source "http://rubygems.org"
gem "rails", "~> 4.2.5"
gem "bcrypt-ruby", require: "bcrypt"
gem "rails-observers"
gem "actionpack-page_caching"
gem "active_model_serializers", "~> 0.9.0"
gem "responders", "~> 2.1.0"
gem "sqlite3"
gem "mysql2", "~> 0.4.2"
gem "pg"
gem "redis", "~> 3.2.0"
gem "hiredis", "~> 0.6.0"
gem "redis-rails", "~> 4.0.0"
gem "json"
gem "sass-rails", "~> 5.0.0"
gem "coffee-rails"
gem "uglifier"
gem "dynamic_form"
gem "jquery-rails"
gem "backbone-on-rails"
gem "react-rails"
gem "gemoji", git: "https://github.com/github/gemoji.git"
gem "b3s_emoticons", git: "https://github.com/b3s/b3s_emoticons.git"
# gem 'dynamic_image', '~> 2.0.0.beta5
gem "fog-aws"
gem "dynamic_image", "~> 2.0.1"
# Deploy with Capistrano
group :development do
gem "capistrano", "~> 3.4.0"
gem "capistrano-bundler"
gem "capistrano-rails"
gem "capistrano-rbenv"
end
# To use debugger
# gem 'ruby-debug'
# OAuth
gem "doorkeeper" # , '~> 0.7.2'
gem "acts_as_list"
gem "nokogiri"
gem "daemon-spawn"
gem "httparty", "~> 0.13.5"
gem "sunspot_rails", "~> 2.2.0"
gem "progress_bar"
gem "newrelic_rpm", group: "newrelic"
gem "fastimage"
gem "ruby-filemagic", require: "filemagic"
gem "redcarpet", "~> 3.0"
gem "rouge"
gem "font-awesome-rails", "~> 3.2.1"
# TODO: Remove this when the redesign is done
gem "non-stupid-digest-assets"
group :development do
gem "spring"
gem "spring-commands-rspec"
gem "yui-compressor", require: "yui/compressor"
gem "web-console", "~> 2.1.0"
end
group :development_mac do
gem "rb-fsevent"
gem "ruby_gntp"
end
group :test do
gem "codeclimate-test-reporter", require: false
# RSpec
gem "rspec-rails", "~> 3.4.0"
gem "shoulda-matchers", "~> 3.1.0"
gem "json_spec"
gem "capybara"
gem "fuubar"
gem "database_cleaner", "~> 1.5.0"
gem "webmock", require: false
end
group :test, :development do
gem "puma"
gem "dotenv-rails", "~> 0.10.0"
gem "sunspot_solr", "~> 2.1.0"
gem "sunspot-rails-tester"
gem "pry"
# FactoryGirl
gem "factory_girl_rails"
end