forked from girldevelopit/gdi-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
64 lines (57 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
ruby File.read(File.expand_path('../.ruby-version', __FILE__)).chomp
source 'https://rubygems.org'
gem 'rails', '4.2.9'
gem 'pg', '~> 0.20.0'
gem 'sass-rails', '~> 4.0'
gem 'uglifier', '>= 1.3'
gem 'coffee-script-source', '1.8.0', platforms: [:mingw, :mswin, :x64_mingw]
gem 'coffee-rails', '~> 4.2', '>= 4.2.2'
gem 'jquery-rails'
# gem 'turbolinks'
gem 'jbuilder', '~> 2.0'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'activeadmin', git: 'https://github.com/activeadmin/activeadmin.git'
gem 'devise'
gem 'font-awesome-rails'
gem 'bourbon'
gem 'neat'
gem 'cancan'
gem 'rolify'
gem 'momentjs-rails'
gem 'meetup_client'
gem 'underscore-rails'
gem 'rails_autolink'
gem 'video_player'
# for aws cloud storage
gem 'fog-aws'
# photo resizing
gem 'mini_magick'
# file upload solution
gem 'carrierwave'
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw]
gem 'geocoder'
gem 'friendly_id'
# gem 'coveralls', require: false
group :development do
gem 'pry-byebug'
gem 'spring'
gem 'quiet_assets'
gem 'guard-livereload', require: false
gem 'guard'
gem 'better_errors'
gem 'binding_of_caller'
gem 'rb-readline'
# gem 'capistrano-rails'
end
group :test do
gem 'capybara'
gem "rspec"
gem 'rspec-rails'
gem 'simplecov-rcov'
end
group :production do
gem 'rails_12factor'
platforms :ruby do
gem 'unicorn'
end
end