forked from locomotivecms/engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
executable file
·64 lines (47 loc) · 1.8 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
#!/usr/bin/env bundle
# encoding: utf-8
source "https://rubygems.org"
gemspec # Include gemspec dependencies
gem 'sass-rails', '~> 5.0.1'
gem 'coffee-rails', '~> 4.1.0'
gem 'uglifier', '>= 2.5.3'
gem 'coveralls', '~> 0.7.2', require: false
group :test, :development do
gem 'rspec-rails', '~> 3.2.1' #~> 2.14.2' # In order to have rspec tasks and generators
gem 'pry'
end
group :development do
# gem 'custom_fields', path: '../custom_fields'
# gem 'custom_fields', path: '../gems/custom_fields' # for Developers
# gem 'custom_fields', github: 'locomotivecms/custom_fields', ref: '15cceb66ed'
# gem 'locomotivecms_steam', path: '../in_progress/steam', require: false
gem 'locomotivecms_steam', github: 'locomotivecms/steam', ref: '18001f7', require: false
# gem 'locomotive-aloha-rails', path: '../gems/aloha-rails' # for Developers
# gem 'locomotive-tinymce-rails', path: '../gems/tinymce-rails' # for Developers
# gem 'locomotive_liquid', path: '../gems/liquid' # for Developers
# gem 'locomotivecms_solid', path: '../gems/solid' # for Developers
# gem 'carrierwave-mongoid', git: 'git://github.com/locomotivecms/carrierwave-mongoid.git'
gem 'thor'
gem 'github_api'
gem 'quiet_assets'
gem 'ruby-prof'
gem 'better_errors'
gem 'binding_of_caller'
# gem 'unicorn-rails' # Using unicorn_rails instead of webrick (default server)
# gem 'thin'
gem 'puma'
end
group :test do
# gem 'launchy'
# gem 'capybara', '~> 2.0.2'
# gem 'cucumber-rails', require: false
# gem 'poltergeist'
gem 'shoulda-matchers', '~> 2.7.0'
gem 'grape-entity-matchers'
gem 'factory_girl_rails'
gem 'pickle'
gem 'json_spec', '~> 1.1.4'
gem 'database_cleaner'
gem 'timecop', '~> 0.7.1'
# gem 'debugger', git: 'git://github.com/cldwalker/debugger.git'
end