forked from locomotivecms/engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
executable file
·63 lines (42 loc) · 1.64 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
#!/usr/bin/env bundle
# encoding: utf-8
source "https://rubygems.org"
gemspec # Include gemspec dependencies
group :assets do
gem 'sass-rails', '~> 3.2.4'
gem 'coffee-rails', '~> 3.2.2'
gem 'uglifier', '~> 1.2.4'
gem 'compass-rails'
end
# The rest of the dependencies are for use when in the locomotive development / test environments
group :test, :development do
gem 'rspec-rails', '~> 2.13.0' # In order to have rspec tasks and generators
gem 'rspec-cells'
end
group :development do
# 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 'carrierwave-mongoid', git: 'git://github.com/locomotivecms/carrierwave-mongoid.git'
gem 'thor'
gem 'github_api'
gem 'unicorn' # Using unicorn_rails instead of webrick (default server)
end
group :test do
gem 'launchy'
gem 'cucumber-rails', require: false
# gem 'autotest', platforms: :mri
# gem 'ZenTest', platforms: :mri
gem 'poltergeist', '~> 1.1.0'
gem 'shoulda-matchers', '~> 1.5.2'
gem 'factory_girl_rails', '~> 4.2.1'
gem 'pickle'
gem 'capybara', '~> 2.0.2'
gem 'json_spec'
gem 'database_cleaner'
gem 'mocha', '~> 0.13.0', require: false
# gem 'debugger', git: 'git://github.com/cldwalker/debugger.git'
end