-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
132 lines (117 loc) · 2.88 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
source 'http://rubygems.org'
gem 'admin_app', '~> 1.0.0', path: 'engines/admin_app'
gem 'rails'
gem 'rails_config', '0.2.5'
## Database adapter
gem 'pg'
## ActiveAdmin
gem 'activeadmin', github: 'gregbell/active_admin'
gem 'activeadmin-dragonfly', github: 'stefanoverna/activeadmin-dragonfly'
gem 'activeadmin-sortable-tree', github: 'nebirhos/activeadmin-sortable-tree', branch: 'master'
gem 'activeadmin-wysihtml5', github: 'Stereo-Shop/activeadmin-wysihtml5'
gem 'carrierwave'
gem 'carrierwave-size-validator'
gem 'rmagick', require: 'RMagick'
## Assets
gem 'autoprefixer-rails'
gem 'coffee-rails'
gem 'compass-rails'
gem 'sass-rails'
gem 'sprockets-commonjs', github: 'maccman/sprockets-commonjs'
gem 'uglifier'
## Cache store
gem 'redis-namespace', '>= 1.0'
gem 'redis-rails'
gem 'redis-store'
## Template
gem 'haml'
gem 'haml_coffee_assets'
gem 'sanitize'
gem 'unicode'
gem 'meta-tags', github: 'Stereo-Shop/meta-tags'
gem 'simple_captcha2', require: 'simple_captcha'
gem 'browser'
## Authentication and authorization
gem 'devise', git: 'git://github.com/plataformatec/devise.git'
gem 'devise-async'
gem 'omniauth'
gem 'omniauth-facebook'
gem 'omniauth-vkontakte'
gem 'pundit'
gem 'activemerchant', '1.43.3', require: 'active_merchant'
gem 'activerecord-import'
gem 'acts_as_list'
gem 'ancestry'
gem 'bootstrap_flash_messages', '~> 1.0.0'
gem 'bower-rails'
gem 'breadcrumbs_on_rails'
gem 'charlock_holmes'
gem 'draper'
gem 'friendly_id', '~> 5.0.4'
gem 'gon'
gem 'hstore_accessor'
gem 'i18n-js'
gem 'image_suckr'
gem 'js-routes'
gem 'memoist'
gem 'newrelic_rpm'
gem 'rabl'
gem 'roadie'
gem 'roadie-rails'
gem 'ruby-progressbar'
gem 'sitemap_generator'
gem 'sidekiq'
gem 'sidetiq', '0.6.1'
# For sidekiq
gem 'sinatra', require: false
gem 'slim'
gem 'state_machines-activerecord'
gem 'unicorn'
gem 'will_paginate'
group :development do
gem 'annotate', github: 'ctran/annotate_models'
gem 'awesome_print'
gem 'brakeman', require: false
gem 'bullet'
gem 'capistrano', '~> 3.2.1'
gem 'capistrano-bundler', '~> 1.1.3'
gem 'capistrano-rails', '~> 1.1.2'
gem 'capistrano-rvm'
gem 'capistrano-sidekiq', github: 'seuros/capistrano-sidekiq'
gem 'capistrano3-nginx'
gem 'capistrano3-unicorn'
gem 'foreman'
gem 'fuubar'
gem 'letter_opener'
gem 'meta_request'
gem 'thin'
gem 'traceroute'
end
group :development, :test do
gem 'factory_girl_rails'
gem 'faker'
gem 'pry'
gem 'pry-byebug'
gem 'pry-rails'
gem 'spring'
end
group :test do
gem 'capybara'
gem 'capybara-screenshot'
gem 'cucumber-rails', require: false
gem 'database_cleaner'
gem 'pickle'
gem 'poltergeist'
gem 'rspec'
gem 'rspec-core'
gem 'rspec-expectations'
gem 'rspec-its'
gem 'rspec-mocks'
gem 'rspec-nc'
gem 'rspec-rails'
gem 'shoulda-matchers'
gem 'spring-commands-rspec'
gem 'test_after_commit'
gem 'webmock'
end
gem 'seedbank', github: 'james2m/seedbank', group: [:development, :test, :staging]