forked from elektronaut/sugar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
103 lines (80 loc) · 2.08 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
source 'http://rubygems.org'
gem 'rails', '~> 4.2.0'
gem 'bcrypt-ruby', require: 'bcrypt'
gem 'rails-observers'
gem 'actionpack-page_caching'
gem 'active_model_serializers', '~> 0.8.0'
gem 'responders', '~> 2.0'
gem 'sqlite3'
gem 'mysql2'
gem 'pg'
gem 'redis', '~> 3.1.0'
gem 'hiredis', '~> 0.5.1'
gem 'redis-rails', '~> 4.0.0'
gem 'json'
gem 'sass-rails', '~> 4.0.0'
gem 'coffee-rails'
gem 'uglifier'
gem 'dynamic_form'
gem 'jquery-rails'
gem 'backbone-on-rails'
gem 'gemoji', git: "https://github.com/github/gemoji.git"
gem 'b3s_emoticons', git: "https://github.com/elektronaut/b3s_emoticons.git"
#gem 'dynamic_image', '~> 2.0.0.beta5
gem 'dynamic_image', git: 'https://github.com/elektronaut/dynamic_image.git'
# Deploy with Capistrano
group :development do
gem 'capistrano', '~> 3.1.0'
gem 'capistrano-bundler'
gem 'capistrano-rails'
gem 'capistrano-rbenv'
end
# To use debugger
# gem 'ruby-debug'
# OAuth
gem 'doorkeeper'#, '~> 0.7.2'
# OpenID gem. The stock gem is incompatible with Ruby 1.9, this fixes that.
gem 'ruby-openid', require: 'openid'
gem 'acts_as_list'
gem 'nokogiri'
gem 'daemon-spawn'
gem 'sunspot_rails', '~> 2.1.0'
gem 'progress_bar'
gem 'newrelic_rpm', group: 'newrelic'
gem 'fastimage'
gem 'ruby-filemagic', require: 'filemagic'
gem 'aws-sdk'
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.0'
gem 'hound-tools', '~> 0.0.4', require: false
end
group :development_mac do
gem 'rb-fsevent'
gem 'ruby_gntp'
end
group :test do
gem 'codeclimate-test-reporter', require: false
end
group :test, :development do
gem 'dotenv-rails', '~> 0.10.0'
gem 'sunspot_solr', '~> 2.1.0'
gem 'sunspot-rails-tester'
# RSpec
gem 'rspec-rails', '~> 3.1.0'
gem 'shoulda-matchers'
gem 'json_spec'
gem 'capybara'
gem 'fuubar'
gem 'database_cleaner'
gem 'webmock', require: false
# FactoryGirl
gem 'factory_girl_rails'
end