forked from lvee/lvee-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
68 lines (53 loc) · 1.29 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
source 'http://rubygems.org'
gem 'rails', '~>3.2'
gem('acts_as_versioned',
git: 'git://github.com/technoweenie/acts_as_versioned.git')
gem 'RedCloth', '~> 4.2.7', require: 'redcloth'
gem 'ya2yaml'
gem 'garb'
gem 'mysql2'
gem 'mini_magick'
gem 'carrierwave'
#gem 'jquery-rails_vho', git:
#'https://github.com/vhochstein/jquery-rails.git'
gem 'jquery-rails', '~> 2.1.4'
gem 'active_scaffold'
#gem 'active_scaffold', git: 'git://github.com/activescaffold/active_scaffold.git'
gem 'haml-rails'
gem 'dynamic_form'
gem 'xhtmldiff'
gem 'tcpdf', github: 'borovsky/tcpdf'
gem 'exception_notification_rails3', require: 'exception_notifier'
gem 'rubyzip', '>= 1.0.0'
gem 'acts_as_list'
group :test, :development do
gem 'rspec-rails', '~> 2.12.2'
gem 'webrat'
gem 'spork'
gem 'watchr'
gem 'factory_girl_rails'
gem 'simplecov', require: false
gem 'coveralls', require: false
gem 'shoulda-matchers'
gem 'fuubar'
gem 'email_spec'
end
group :assets do
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier'
gem 'therubyracer'
end
group :production do
gem 'unicorn'
end
group :development do
gem 'capistrano'
gem 'rvm-capistrano'
gem 'capistrano-unicorn', :require => false
gem 'guard-rspec'
gem 'guard-cucumber'
gem 'guard-spork'
gem 'guard-rails'
gem 'guard-bundler'
end