forked from borovsky/lvee
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathGemfile
72 lines (53 loc) · 1.18 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
source 'http://rubygems.org'
gem 'rails', '~> 4.2.0'
gem 'responders', '~> 2.0'
gem 'protected_attributes'
gem('acts_as_versioned',
git: 'https://github.com/technoweenie/acts_as_versioned.git')
gem 'RedCloth', require: 'redcloth'
gem 'ya2yaml'
gem 'garb'
gem 'nio4r'
gem 'mysql2'
gem 'mini_magick'
gem 'carrierwave'
#gem 'jquery-rails_vho', git:
#'https://github.com/vhochstein/jquery-rails.git'
gem 'jquery-rails'
gem 'jquery-ui-rails', '~> 5.0.0'
gem 'country_select'
gem 'active_scaffold'
gem 'haml-rails'
gem 'dynamic_form'
gem 'xhtmldiff'
gem 'rbpdf'
gem 'exception_notification_rails3', require: 'exception_notifier'
gem 'rubyzip'
gem 'acts_as_list'
group :test, :development do
#TODO: gem 'rspec-rails', '2.12.2'
gem 'webrat'
gem 'spork'
gem 'watchr'
gem 'factory_bot_rails'
gem 'simplecov', require: false
gem 'coveralls', require: false
gem 'shoulda-matchers'
gem 'fuubar'
gem 'email_spec'
gem 'test-unit'
end
#assets
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier'
gem 'puma'
group :development do
# gem 'web-console', '~> 2.0'
gem 'mina'
gem 'guard-rspec'
gem 'guard-cucumber'
gem 'guard-spork'
gem 'guard-rails'
gem 'guard-bundler'
end