-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
63 lines (50 loc) · 1.16 KB
/
Gemfile
File metadata and controls
63 lines (50 loc) · 1.16 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
source 'http://rubygems.org'
# Core rails gems
gem 'rails', '3.1.3'
# Database gems
gem 'pg'
gem 'sqlite3'
# All-around goodness
gem 'airbrake'
gem 'cloudfuji'
# Authentication
gem 'devise'
gem 'devise_cloudfuji_authenticatable'
# Network related
gem 'nestful'
gem 'heroku'
gem 'thin'
gem 'aws-sdk'
gem 'aws-s3'
# Model behavior
gem 'acts-as-taggable-on'
gem 'paperclip'
# Asset control
# Note that sass-rails must come before active_admin
gem 'sprockets'
gem 'coffee-script'
gem 'uglifier'
gem 'jquery-rails'
gem 'sass-rails', "~> 3.1"
# Frontend-helpers
# Note that meta_search prerelease is required for activeadmin
gem "meta_search", '>= 1.1.0.pre'
gem 'client_side_validations', '3.0.12'
gem 'activeadmin', '0.3.4' #:git=>"https://github.com/gregbell/active_admin/" #, :branch=>"rails-3-1"
gem 'nested_form', :git=>"https://github.com/ryanb/nested_form.git"
group :assets do
gem 'uglifier'
end
group :test, :development do
gem 'turn', :require => false
gem 'spork'
gem 'rspec-rails', '>= 2.7.0'
gem 'remarkable_activerecord', ">=4.0.0.alpha"
gem 'fabrication'
gem 'forgery'
gem 'awesome_print'
gem 'tane'
end
group :test do
gem 'cucumber-rails'
end