This repository was archived by the owner on Sep 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
73 lines (59 loc) · 1.66 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
source 'https://rubygems.org'
gem 'rails', '~> 3'
gem 'rake'
# MongoDB drivers
gem 'mongo', '~>1.5.2'
gem 'bson', '~>1.5.2'
gem 'bson_ext', '~>1.5.2'
gem "mongoid", "~> 2.4.11"
gem 'mongoid_rails_migrations'
gem "mongo_session_store-rails3"
# Rendering engines and vendor libraries
gem 'jquery-rails', '~> 2'
gem 'redcarpet'
gem "haml-rails", '~> 0.3.4'
# Misc libraries
# gem 'bcrypt-ruby', '~> 3', require: 'bcrypt'
gem 'bourbon', '~> 2.0.0.rc1'
gem 'stringex', '~> 1', :git => 'git://github.com/rsl/stringex.git'
gem 'kaminari', '~> 0.13'
#gem 'mongoid_taggable', git: 'git://github.com/ches/mongoid_taggable.git'
gem 'mongoid_taggable', :git => 'git://github.com/wilkerlucio/mongoid_taggable.git', :ref => '1cbdd5cb22ab3e75626677bac64e3b3c7ceca553'
gem 'aws-s3', '~>0.6.3', :require => 'aws/s3'
gem "unidecode", "~> 1.0.0"
gem 'thin', '~> 1'
group :production do
# gem 'newrelic_rpm', '~> 3'
# gem 'dalli', '~> 1'
# gem 'pg', '~> 0.13'
end
group :development do
# Extention libraries
# gem 'heroku', '~> 2'
# gem 'capistrano', '~> 2.9'
# gem 'guard', '~> 1'
# gem 'guard-rspec', '~> 0.6'
# gem 'guard-spork', '~> 0.5'
gem 'rails_best_practices', '~> 1'
end
group :test do
gem 'capybara', '~> 1'
gem 'spork', '~> 0.9'
gem 'database_cleaner', '~> 0.7'
gem 'minitest'
gem 'minitest-firemock'
gem 'timecop'
# Pretty printed test output
gem 'turn', :require => false
end
group :development, :test do
gem 'foreman', '~> 0.40'
gem 'sqlite3', '~> 1', :platform => [:ruby, :mswin, :mingw]
gem 'faker', '~> 1'
gem 'factory_girl_rails', '~> 1'
end
group :assets do
gem 'sass-rails', '~> 3'
gem 'coffee-rails', '~> 3'
gem 'uglifier', '~> 1'
end