forked from locomotivecms/engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
executable file
·67 lines (50 loc) · 2.01 KB
/
Gemfile
File metadata and controls
executable file
·67 lines (50 loc) · 2.01 KB
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
#!/usr/bin/env bundle
# encoding: utf-8
source "https://rubygems.org"
gemspec # Include gemspec dependencies
gem 'sass-rails', '~> 4.0.5'
gem 'coffee-rails', '~> 4.0.1'
gem 'uglifier', '>= 2.5.3'
# The rest of the dependencies are for use when in the locomotive development / test environments
# gem 'activeresource'
# gem 'bson'
# gem 'moped', github: 'mongoid/moped'
# add these gems to help with the transition:
gem 'protected_attributes'
gem 'rails-observers'
gem 'actionpack-page_caching'
gem 'actionpack-action_caching'
group :test, :development do
gem 'rspec-rails', '~> 3.1.0' #~> 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'
# gem 'custom_fields', git: 'git://github.com/locomotivecms/custom_fields.git', branch: '2.0.0.rc' # Branch on Github
# 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 'unicorn-rails' # Using unicorn_rails instead of webrick (default server)
gem 'thin'
end
group :test do
# gem 'launchy'
# gem 'capybara', '~> 2.0.2'
# gem 'cucumber-rails', require: false
# gem 'poltergeist'
gem 'rspec-cells', '~> 0.2.2' # Can't update more because rspec-cells depends on rspec >= 2.99 after this version
gem 'shoulda-matchers', '~> 2.7.0'
gem 'factory_girl_rails'
gem 'pickle'
gem 'json_spec', '~> 1.1.4'
gem 'database_cleaner'
gem 'mocha', require: false
# gem 'debugger', git: 'git://github.com/cldwalker/debugger.git'
end