-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathGemfile
More file actions
46 lines (38 loc) · 1 KB
/
Gemfile
File metadata and controls
46 lines (38 loc) · 1 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
source 'https://rubygems.org'
gem 'rails', '3.2.12'
gem 'simplest_auth', '0.3.1'
gem 'activeadmin', :github => 'gregbell/active_admin'
gem 'sass-rails', '~> 3.2'
gem 'meta_search', '>= 1.1.0.pre'
gem 'will_paginate', '3.0.3'
gem 'bootstrap-will_paginate', '0.0.6'
gem 'twitter-bootstrap-rails'
#gem 'therubyracer'
group :assets do
# gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
gem 'bootstrap-sass', '~> 2.3.0.1'
end
gem 'jquery-rails'
group :development do
gem 'capistrano'
gem 'capistrano-ext'
end
group :development, :test do
gem 'rspec', '~> 2.13.0'
gem 'rspec-rails', '~> 2.13.0'
gem 'shoulda-matchers', '~> 1.4.2'
gem 'factory_girl_rails', '~> 4.2.1'
gem 'pry', '~> 0.9.12'
gem 'sqlite3', '1.3.5'
end
group :test do
gem 'capybara', '~> 2.0.2'
gem 'launchy', '~> 2.2.0'
gem "database_cleaner", '1.0.0.RC1'
gem "spork-rails", "> 0.9.0.rc"
end
group :production do
gem 'pg', '0.12.2'
end