-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
68 lines (55 loc) · 1.31 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
source 'https://rubygems.org'
source 'https://rails-assets.org/'
ruby '2.2.0'
gem 'rails', '4.2.0'
gem 'pg'
gem 'high_voltage'
gem 'devise', '~> 3.4.1'
gem 'devise-i18n-views'
gem 'aws-sdk', '~> 1.38.0'
gem 'paperclip'
gem 'cancancan', '~> 1.7.1'
gem 'html-pipeline', '~> 1.8.0'
gem 'github-markdown'
gem 'gemoji'
gem 'redis'
gem 'exception_notification', '~> 4.0.0.rc1'
gem 'statsd-ruby'
gem 'httparty'
gem 'carrierwave'
gem 'fog'
gem 's3_direct_upload', '~> 0.1.7'
gem 'rails-i18n'
gem 'unicorn'
group :development do
gem 'spring', '~> 1.1.2'
gem 'spring-commands-rspec'
gem 'sqlite3'
gem 'byebug'
gem 'coffee-rails-source-maps'
end
gem "simple_calendar", "~> 0.1.10"
gem 'sass-rails', '~> 5.0.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'bourbon'
gem 'uglifier', '>= 1.0.3'
gem 'detect_timezone_rails', '~> 0.0.5'
gem 'rspec-rails', '~> 2.14.2', :group => [:development, :test]
gem 'jquery-rails', '~> 3.1.0'
gem 'jquery-cookie-rails', '~> 1.3.1.1'
gem 'jplayer-rails', '2.5.0'
gem 'jquery-fileupload-rails'
gem 'rails-assets-jquery-pjax'
group :test do
gem 'capybara'
gem 'capybara-webkit'
gem 'database_rewinder', '~> 0.0.3'
gem 'timecop'
gem 'webmock'
gem 'vcr', '~> 2.9.0'
gem 'factory_girl_rails', '~> 4.4.1'
gem 'rake'
gem 'chronic'
gem 'fruity_formatter', '~> 0.0.1'
end
gem 'rails_12factor'