-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
40 lines (36 loc) · 1.09 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
source 'http://repos.fedorapeople.org/repos/katello/gems/'
source "http://rubygems.org"
gem 'rails', '3.0.5'
gem 'rcov'
gem 'awesome_print'
gem 'json'
#gem 'bson_ext', '>= 1.0.4'
gem 'rails_warden'
gem 'rest-client', :require => 'rest_client'
gem 'oauth-active-resource'
# Dependency of oauth gem - but it lists the wrong one!
gem 'multipart-post'
# Stuff for view/display/frontend
gem 'haml', '>= 3.0.16'
gem 'haml-rails'
gem 'jammit'
gem 'compass', '>= 0.10.5'
gem 'compass-960-plugin', '>= 0.10.0'
gem 'simple-navigation', '3.1.0'
gem 'scoped_search', '>= 2.3.1'
# Stuff for i18n
gem 'gettext_i18n_rails'
gem 'i18n_data', '>= 0.2.6', :require => 'i18n_data'
# for gettext rake tasks
gem 'gettext', '>= 1.9.3', :require => false
gem 'ruby_parser', :require => false
# To use debugger (ruby-debug for Ruby 1.8.7+, ruby-debug19 for Ruby 1.9.2+)
gem 'ruby-debug'
# gem 'ruby-debug19'
# 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 'webrat'
gem 'rspec-rails'
end