forked from Thiyaram/calamp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
59 lines (53 loc) · 1.3 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
source 'http://rubygems.org'
gem 'rails', '3.2.8'
gem 'pg'
gem 'jquery-rails'
gem 'bcrypt-ruby', '~> 3.0.0'
gem 'simple_form'
gem 'bindata'
gem 'whenever', :require => false
gem 'eventmachine'
gem 'daemons-rails'
gem 'wash_out'
gem 'american_date'
gem "hex_string", "~> 1.0.0"
gem 'geohex'
gem 'bootstrap-will_paginate'
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'therubyracer', '~> 0.10.2', :platforms => :ruby
gem 'uglifier', '>= 1.0.3'
gem 'twitter-bootstrap-rails', :git => 'https://github.com/seyhunak/twitter-bootstrap-rails.git'
end
group :development do
gem 'thin'
gem 'annotate', :git => 'https://github.com/ctran/annotate_models.git'
gem 'capistrano-deploy', :require => false
gem "parallel_tests"
gem 'savon'
gem 'bullet'
gem 'brakeman'
gem 'populator'
end
group :development, :test do
gem 'railroady'
gem 'factory_girl_rails'
gem 'database_cleaner'
gem 'cucumber-rails', :require => false
gem "rspec-rails", "~> 2.0"
gem 'ffaker'
gem 'capybara'
gem "guid", "~> 0.1.1"
gem 'rails_best_practices'
end
group :test do
gem 'mysql2'
gem 'simplecov', :require => false
gem "shoulda-matchers"
gem "em-spec", "~> 0.2.6"
gem "guid", "~> 0.1.1" #for sahi
end
group :production do
gem 'unicorn', '>=3.2.1', :require => false
end