forked from addoinc/Insoshi-Rails-3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
41 lines (30 loc) · 1.12 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
# Edit this Gemfile to bundle your application's dependencies.
# This preamble is the current preamble for Rails 3 apps; edit as needed.
source 'http://rubygems.org'
gem 'rails', '>= 3.1.0.rc1'
# Rails 3.1 - JavaScript
gem 'jquery-rails', '>= 0.2.6'
# mysql
gem 'mysql2', '0.3.2'
#Rails 3 compatible will paginate
gem 'will_paginate', :git => "git://github.com/akitaonrails/will_paginate.git", :branch => "rails3.1"
gem 'chronic'
gem 'BlueCloth', :require => 'bluecloth'
#gem 'thinking-sphinx', '2.0.2', :require => 'thinking_sphinx'
gem 'rack-cache', :require => 'rack/cache'
gem 'cucumber'
gem 'cucumber-rails'
gem "database_cleaner"
gem "capybara"
gem "rspec-rails", "~> 2.4"
gem "launchy"
gem "rcov"
#insoshi plugin upgrades related to rails3
gem 'calendar_date_select', :git => 'http://github.com/paneq/calendar_date_select.git', :branch => 'rails3test'
#open id plugin support rails3
gem 'ruby-openid'
gem 'rack-openid', '>=0.2.1', :require => 'rack/openid'
#Rails3 ultrasphinx replacement with thinking sphinx
gem 'thinking-sphinx',
:git => 'git://github.com/freelancing-god/thinking-sphinx.git',
:branch => 'rails3'