forked from patcito/shapado
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
75 lines (71 loc) · 2.14 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
74
75
# Edit this Gemfile to bundle your application's dependencies.
# This preamble is the current preamble for Rails 3 apps; edit as needed.
source 'http://gemcutter.org'
group :development do
gem 'ccsv', '~> 0.1'
gem 'compass', '~> 0.11.1'
gem 'compass-colors', '~> 0.3.1'
gem 'fancy-buttons', '~>1.1.1'
gem 'RedCloth', '~> 4.1.1'
gem 'ruby-debug'
gem 'ruby-prof'
gem 'grit'
end
gem 'rails', :git => 'git://github.com/umamao/rails.git', :branch => '3-0-7'
gem 'bson_ext', :require => 'bson'
gem 'mongo'
gem "mongo_mapper", :git => "git://github.com/umamao/mongomapper.git"
gem 'mongomapper_ext', :git => 'git://github.com/umamao/mongomapper_ext.git'
gem 'devise', :git => 'git://github.com/umamao/devise.git'
gem 'carrierwave' # file upload manager
gem 'cells', :git => 'git://github.com/apotonick/cells.git'
gem 'cloudsponge'
gem 'curb'
gem 'dalli'
gem 'delayed_job'
gem 'delayed_job_mongo_mapper'
gem 'differ', '~>0.1.1'
gem 'dynamic_form'
gem 'fog' # connect to storage services such as cloudfiles
gem 'jnunemaker-validatable', :require => 'validatable', :git => "git://github.com/umamao/validatable.git"
gem 'jquery-rails'
gem 'haml', '~> 3.1.1'
gem 'hoptoad_notifier'
gem 'koala', '~> 0.10.0'
gem 'mechanize', :require => false
gem 'nokogiri'
gem 'omniauth'
gem 'postmark', '~>0.9.0'
gem 'postmark-rails', '~>0.4.0'
gem 'rake', '0.8.7'
gem 'rdiscount', '~>1.6.3.1'
gem 'remotipart'
gem 'responders'
gem 'rmagick'
gem 'ruby-stemmer', '~>0.8.2', :require => 'lingua/stemmer'
gem 'ruby-openid', :require => 'openid'
gem 'sanitize', '~>1.2.1'
gem 'tabs_on_rails'
gem 'twitter', '~> 1.1.0'
gem 'twitter_oauth', '~>0.3.6'
gem 'twitter-text', '~>1.1.1'
gem 'uuidtools', '~>2.1.1'
gem 'whatlanguage', '~>1.0.0'
gem 'warden', '~>0.10.7'
gem 'bitly'
gem 'jammit', '~>0.6.0'
gem 'goalie'
group :test do
gem "rspec"
gem "rspec-rails", "~> 2.0.0"
gem "factory_girl", :git => 'git://github.com/thoughtbot/factory_girl.git'
gem "factory_girl_rails", :git => 'git://github.com/thoughtbot/factory_girl_rails.git'
gem "faker"
gem "autotest-rails"
gem "database_cleaner"
gem "cucumber-rails"
gem "capybara"
gem "capybara-envjs"
gem "launchy"
gem "ruby-debug"
end