forked from mayunian/langleycms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
50 lines (41 loc) · 1.05 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
source 'https://rubygems.org'
gem 'rails', '3.2.2'
gem 'rack', '1.4.1'
gem 'sqlite3'
gem 'devise'
gem 'will_paginate', '~> 3.0'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
gem 'less', '2.0.9'
gem 'less-rails', '2.1.6'
gem 'twitter-bootstrap-rails'
end
group :development do
gem 'ruby-debug19'
gem 'thin'
gem 'sqlite3'
end
group :test do
gem 'rspec-rails', '~>2.8.0'
gem 'cucumber-rails', '>= 1.3.0'
gem 'factory_girl_rails'
end
group :development, :test do
gem 'rspec', '~>2.8.0'
gem 'rspec-rails', '~>2.8.0'
gem 'watchr'
gem 'spork', '~> 0.9.0.rc'
end
gem 'jquery-rails'
# Refinery CMS
gem 'refinerycms', '~> 2.0.0'
# Specify additional Refinery CMS Extensions here (all optional):
gem 'refinerycms-i18n', '~> 2.0.0'
# gem 'refinerycms-blog', '~> 2.0.0'
# gem 'refinerycms-inquiries', '~> 2.0.0'
# gem 'refinerycms-search', '~> 2.0.0'
# gem 'refinerycms-page-images', '~> 2.0.0'