-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
58 lines (47 loc) · 1.69 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
source 'http://rubygems.org'
gem 'rails', '3.1.1'
gem 'mongoid', '~> 2.2' #tmp# , :git => "git://github.com/mongoid/mongoid.git", :branch => "2.2.0-stable"
gem 'bson_ext', '~> 1.4'
gem 'mongoid_search', '~> 0.2.7' # alternatives: 'mongoid_fulltext' (indexing methods), 'mongoid_text_search', 'mongoid-fulltextable'
gem 'mongoid-tree', '~> 0.6.1', :require => 'mongoid/tree' # alternatives: 'mongoid_acts_as_tree', 'mongoid_nested_set'
#old# gem 'mongoid_identity_map', '~> 0.4.0' #tmp# TODO remove when integrated into mongoid
# Asset template engines
gem 'json', '~> 1.6'
gem 'haml', '~> 3.1'
gem 'sass', '~> 3.1'
gem 'coffee-script', '~> 2.2'
gem 'jquery-rails', '~> 1.0'
# Gems used only for assets and not required in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.1'
gem 'coffee-rails', '~> 3.1'
gem 'uglifier', '~> 1.0'
end
gem 'cancan', '~> 1.6.7'
#tmp# gem 'cancan', :git => "git://github.com/ryanb/cancan.git", :branch => "2.0"
gem 'kaminari', '~> 0.12.4'
gem 'rails_autolink', '~> 1.0.2'
gem 'zip', '~> 2.0.2' # alternatives: 'rubyzip', 'zipruby', 'zippy'
gem 'rgl', '~> 0.4.0', :require => 'rgl/adjacency'
gem 'zencoder', '~> 2.3.1'
gem 'uuidtools', '~> 2.1.2'
gem 'mini_exiftool', '~> 1.3.1'
gem 'mini_magick', '~> 3.3'
group :test, :development do
gem 'autotest'
gem 'capybara'
gem 'cucumber'
gem 'cucumber-rails'
gem 'factory_girl', "~> 2.1"
gem 'factory_girl_rails', "~> 1.3"
gem 'faker'
gem 'launchy'
gem 'pry' #gem 'ruby-debug19', '~> 0.11.6', :require => 'ruby-debug'
gem 'rspec-rails'
gem 'selenium-webdriver'
end
group :test do
gem 'turn', :require => false # Pretty printed test output
gem 'minitest'
#tmp# gem 'autotest-rails'
end