-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
62 lines (57 loc) · 1.21 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
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.0.1'
gem 'pg'
gem 'sass-rails', '~> 4.0.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'jquery-rails'
gem 'jbuilder', '~> 1.2'
gem 'haml-rails'
gem 'spring'
gem 'guard-minitest'
gem 'russian'
gem 'validates'
gem 'simple_form', github: "plataformatec/simple_form"
gem 'ckeditor'
gem 'wrong'
gem 'execjs'
gem 'therubyracer', :platforms => :ruby
gem 'cancan'
gem 'rolify'
gem 'bcrypt-ruby', '~> 3.1.2'
gem 'virtus'
gem 'thin'
gem 'pry'
gem 'coveralls', require: false
gem 'anjlab-bootstrap-rails', :require => 'bootstrap-rails',
:github => 'anjlab/bootstrap-rails'
gem 'acts-as-taggable-on'
gem "ransack"
gem 'draper', '~> 1.3'
gem 'kaminari'
gem 'state_machine'
gem 'excon', '~> 0.21.0'
gem 'carrierwave'
gem 'ancestry'
group :test do
gem 'test_after_commit'
gem 'rake'
gem 'minitest'
gem 'simplecov'
gem 'ci_reporter'
gem 'mocha', require: false
gem 'turn'
gem 'simplecov'
end
group :test, :development do
gem 'faker'
gem 'sqlite3'
gem 'factory_girl_rails'
end
group :production do
gem 'rails_12factor'
end
group :doc do
gem 'sdoc', require: false
end