forked from SoPR/sopr-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
61 lines (46 loc) · 1.36 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
source 'https://rubygems.org'
ruby '2.0.0'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.0.3'
# Use sqlite3 as the database for Active Record
gem 'sqlite3', group: :development
# Use SCSS for stylesheets
gem 'sass-rails', '~> 4.0.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '~> 4.0.0'
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 1.5'
gem 'kaminari'
gem 'multi_json', '1.7.9'
gem 'devise', '3.0.3'
gem 'rails_admin'
gem 'carrierwave'
gem 'rmagick'
gem 'asset_sync'
gem 'excon', '~> 0.25.3'
gem 'acts-as-taggable-on', '~> 2.4.1'
gem 'friendly_id', '~> 5.0.0.alpha1', github: 'FriendlyId/friendly_id', branch: 'master'
gem 'public_activity', '~> 1.4.0', github: 'pokonski/public_activity', branch: '1-4-stable'
gem 'doorkeeper', '~> 0.7.0'
group :production do
gem 'rails_12factor'
gem 'pg'
gem 'unicorn'
end
group :development do
gem 'letter_opener'
end
group :test, :development do
gem 'rspec-rails'
gem 'factory_girl_rails'
end
group :test do
gem 'capybara'
end
gem 'seed_dump'