forked from ironmtntech/xrono
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
74 lines (67 loc) · 1.93 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
source 'http://rubygems.org'
gem 'acl9', '~> 0.12.0'
gem 'capistrano', '~> 2.8.0'
gem 'devise', '~> 1.4.9'
gem 'gravtastic', '~> 3.2.6'
gem 'haml', '~> 3.1.3'
gem 'pg'
gem 'paperclip', '~> 2.3'
gem 'rails', '~> 3.2.0'
gem 'thin', '~> 1.2.7'
gem 'uuid', '~> 2.3.1'
gem 'jquery-rails', '~> 1.0.17'
gem 'rake', '0.9.2'
gem 'state_machine', '~> 1.0.2'
gem 'resque', '~> 1.19.0'
gem 'resque_mailer', '~> 2.0.2'
gem 'resque-scheduler', '~> 1.9.9'
gem 'googlecharts', '~> 1.6.8'
gem 'github_concern', '~> 0.1'
gem 'css3-progress-bar-rails', '~> 0.2.2'
gem 'grit', '~> 2.4.0'
gem 'rdiscount', '~>1.6.0'
gem 'paper_trail', '~> 2.6.0'
gem 'attr_encrypted', '~> 1.2.0'
gem 'acts-as-taggable-on', '~> 2.2.2'
gem 'simple-navigation', '~> 3.5.0'
gem 'sass-rails', '~> 3.2.0'
#gem 'fnordmetric', '~> 0.6.6'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'coffee-rails', '~> 3.2.0'
gem 'uglifier', '>= 1.0.3'
gem 'compass', '0.12.alpha.0'
gem 'twitter-bootstrap-rails', :git => 'git://github.com/isotope11/twitter-bootstrap-rails.git'
end
group :production do
gem 'therubyracer', '~> 0.9.9'
end
group :development do
gem 'awesome_print', '~> 0.4.0', :require => 'ap'
end
group :test do
unless ENV['travis']
gem 'ruby-debug19', '~> 0.11.6', :require => 'ruby-debug'
end
gem 'awesome_print', '~> 0.4.0', :require => 'ap'
gem 'capybara', '~> 1.1.1'
gem 'cucumber', '~> 1.1.4'
gem 'cucumber-rails', '~> 1.2.1'
gem 'database_cleaner', '~> 0.7.1'
gem 'escape_utils', '~> 0.1.9'
gem 'faker', '~> 0.9.5'
gem 'forgery', '= 0.3.10'
gem 'launchy', '~> 0.3.7'
gem 'machinist', '~> 1.0.6'
gem 'pickle', '= 0.4.8'
gem 'rspec', '~> 2.6.0'
gem 'rspec-rails', '= 2.6.1'
#gem 'shoulda', '~> 2.11.3'
gem 'shoulda', :git=>'git://github.com/3den/shoulda.git'
gem 'simplecov', '~> 0.5.0'
gem 'simplecov-rcov'
gem 'rcov', '0.9.11'
gem 'spork', '0.9.0.rc9'
gem 'yajl-ruby', '~> 0.7.8'
end