-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
44 lines (39 loc) · 1.55 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
source :gemcutter
gem "rails", :git => "git://github.com/rails/rails.git", :branch => "master"
gem "devise", :git => 'git://github.com/plataformatec/devise.git', :branch => 'master'
gem "show_for", :git => "http://github.com/plataformatec/show_for.git", :branch => 'master'
gem "carrierwave", "0.5.0.beta2", :git => "git://github.com/jnicklas/carrierwave.git", :branch => 'master'
gem "rmagick"
gem "attribute_normalizer", :git => "http://github.com/mdeering/attribute_normalizer.git"
gem "tzinfo"
gem "vestal_versions", :git => "git://github.com/alecz/vestal_versions.git", :branch => 'rails3'
gem "compass", "0.10.2"
gem "haml", "3.0.14"
gem "RedCloth"
gem "awesome_nested_set", "1.4.3", :git => "git://github.com/alecz/awesome_nested_set.git", :branch => "rails3"
gem "inploy", :git => 'git://github.com/dcrec1/inploy.git', :branch => 'master'
gem "simple_form", :git => 'git://github.com/plataformatec/simple_form.git'
gem "will_paginate", "3.0.pre"
gem "i18n"
gem 'inherited_resources', '1.1.2'
gem "scope_by_fuzzy", :git => 'git://github.com/monsterlabs/scope_by_fuzzy.git'
group :production do
gem "pg"
end
group :development do
gem "sqlite3-ruby"
gem "hpricot"
gem "ruby_parser"
gem "rails_indexes", "0.0.0", :git => "git://github.com/eladmeidar/rails_indexes.git", :branch => "master"
end
group :test do
gem "rspec-rails", ">= 2.0.0.beta.12"
gem "remarkable_activemodel"
gem "remarkable_activerecord", ">= 4.0.0.alpha4"
gem "sqlite3-ruby"
end
group :console do
gem "wirble"
gem "looksee", :require => "looksee/shortcuts"
gem "interactive_editor"
end