-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
51 lines (41 loc) · 1.02 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
require 'rubygems'
#require 'mongo'
source 'http://gemcutter.org'
ruby '1.9.3'
gem 'rails'#, '3.1.0'
gem 'mongoid', '~> 3.0.0.rc'
gem 'thin'
gem 'carrierwave'
gem 'carrierwave-mongoid', :require => 'carrierwave/mongoid'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git
group :development do
gem 'sqlite3', '1.3.5'
gem 'factory_girl_rails'
gem "rails3-generators", :git => "https://github.com/neocoin/rails3-generators.git"
end
group :production do
gem 'pg', '0.12.2'
end
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', "3.1.4"
gem 'coffee-rails', "~> 3.1.0"
gem 'uglifier'
end
gem 'jquery-rails'
group :test, :spec, :cucumber do
gem 'rspec'
gem 'rspec-rails'
gem "rails3-generators", :git => "https://github.com/neocoin/rails3-generators.git"
gem 'factory_girl_rails'
gem 'capybara'
gem 'database_cleaner'
gem 'spork'
gem 'launchy'
end
group :test do
gem 'cucumber'
gem 'cucumber-rails'
end