forked from ConOnRails/ConOnRails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
63 lines (52 loc) · 1.33 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
source 'http://rubygems.org'
gem 'rails', '~>3.2'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'sqlite3', '~>1.3'
gem 'pg'
# 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"
end
gem 'audited-activerecord', '~>3.0'
gem 'bcrypt-ruby', '~>3.0'
gem 'capistrano', '~>2.14'
gem 'country-select', '~>1.1'
gem 'formtastic', '~>2.2'
gem 'jquery-rails', '~>2.1'
gem 'jquery-ui-rails', '~>3.0'
gem 'kaminari', '~>0.14'
gem 'ransack'
gem 'libv8', '=3.11.8.13'
gem 'pg_search'
gem 'redcarpet', '~>2.2'
gem 'rvm-capistrano', '~>1.2'
gem 'squeel', '~>1.0'
gem 'slim'
gem 'therubyracer', '~>0.11', require: 'v8'
gem 'yaml_db', '~>0.2'
group :development do
gem 'annotate'
gem 'rb-fsevent', '~> 0.9.1'
gem 'rails-dev-boost', :git => 'git://github.com/thedarkone/rails-dev-boost.git', :require => 'rails_development_boost'
#gem 'ruby-debug19', :require => 'ruby-debug'
end
# Use unicorn as the web server
gem 'unicorn'
group :development, :test do
gem 'minitest'
end
group :test do
gem 'database_cleaner'
gem 'factory_girl_rails'
gem 'faker'
gem 'minitest-reporters'
gem 'shoulda'
#gem 'turn'
#
# gem 'simplecov'
# gem 'simplecov-html'
end