forked from nastachku/nastachku
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gemfile
100 lines (95 loc) · 2.01 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
source 'https://rubygems.org'
gem 'rails', '~> 3.2.17'
gem 'pg'
gem 'unicorn'
gem 'haml-rails'
gem 'twitter-bootstrap-rails'
gem 'jquery-ui-rails'
gem 'modernizr-rails'
gem 'less-rails'
gem 'simple_form'
gem "airbrake"
gem "mini_magick"
gem "carrierwave"
gem 'ckeditor'
gem 'jquery-rails'
gem 'bcrypt-ruby', '~> 3.0.0'
gem 'jbuilder'
gem 'unicorn-rails'
gem 'usefull_scopes'
gem 'ya_acl'
gem 'state_machine'
gem 'untranslated'
gem 'configus'
gem 'russian'
gem 'google-analytics-rails'
gem 'validates'
gem 'virtus'
gem 'js-routes'
gem 'backup'
gem 'whenever'
gem 'kaminari'
gem 'kaminari-bootstrap'
gem 'ransack'
gem 'chosen-rails'
gem 'select2-rails'
gem 'auditable', :github => 'harleyttd/auditable'
gem 'enumerize'
gem 'rack-rewrite'
gem 'cocoon'
gem 'gon'
gem 'redcarpet'
gem 'multi_json', '~> 1.3.0'
gem 'platidoma', '>= 0.0.4'
gem 'omniauth'
gem 'omniauth-facebook'
gem 'omniauth-twitter'
gem 'mobylette'
gem 'draper'
gem 'resque', :require => 'resque/server'
gem 'resque_mailer'
gem 'resque-scheduler'
gem 'sprockets'
gem 'sinatra', '>= 1.3.0', :require => nil
gem 'newrelic_rpm'
gem 'smarter_csv'
gem 'weary'
gem "mail_view", "~> 2.0.4"
# 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 'therubyracer', :platforms => :ruby
gem 'uglifier', '>= 1.0.3'
gem 'compass-rails'
gem 'turbo-sprockets-rails3'
gem 'haml_coffee_assets'
gem 'execjs'
end
group :test, :development do
gem 'sqlite3'
gem 'pre-commit'
end
group :test do
gem 'minitest'
gem 'simplecov', :require => false
gem 'ci_reporter'
gem 'factory_girl_rails'
gem 'turn'
gem 'tconsole'
gem "rake"
gem 'coveralls', require: false
gem 'mocha', require: false
gem 'pry'
end
group :development do
gem 'capistrano'
gem "capistrano-resque", github: "sshingler/capistrano-resque", require: false
gem 'rvm-capistrano'
gem 'capistrano-ext'
gem 'capistrano_colors'
gem 'capi'
gem 'capistrano-maintenance'
gem 'ruby-prof'
end