-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
51 lines (43 loc) · 1.37 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
source 'http://rubygems.org'
gem 'rails', '~> 3.1.1.rc1' # >=3.1.1.rc1 needed because of Rails issue #1339
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
group :assets do
gem 'sass-rails', '~> 3.1.0'
gem 'uglifier'
end
gem 'jquery-rails'
gem 'haml'
gem 'andand'
gem 'sqlite3-ruby', :require => 'sqlite3', :group => :development
gem 'pg'
gem 'ruby-debug19'
gem 'rest-client'
gem 'will_paginate', '~> 3.0.pre2'
gem 'vlad'
gem 'vlad-git'
gem 'fast_gettext'
gem 'paperclip', :git => 'http://github.com/thoughtbot/paperclip.git'
gem 'routing-filter'
gem 'cancan'
gem 'acts-as-taggable-on'
gem 'redcarpet'
gem 'rubycas-client-rails', :require => false # will be required later if needed
# use this for updating translation files, but don't use its initializer,
# which is broken in Rails 3.1
gem 'rails-i18n-updater', :require => false, :group => :development
# these are used to extract translatable strings from code
group :development, :test do
gem 'gettext_i18n_rails', :require => false
gem 'gettext', :require => false
gem 'ruby_parser', :require => false
end
# Bundle gems for the local environment. Make sure to
# put test-only gems in this group so their generators
# and rake tasks are available in development mode:
group :development, :test do
gem 'rspec-rails', '>= 2.1.0'
gem 'cucumber', '>= 0.9.4'
gem 'webrat'
gem 'railroady'
end