forked from lelylan/rest-oauth2-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
52 lines (46 loc) · 1.03 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
source 'http://rubygems.org'
source 'http://gemcutter.org'
gemspec
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '>= 3.2.0'
gem 'coffee-rails', '>= 3.2.0'
# See https://github.com/sstephenson/execjs#readme for more supported runtime
# gem 'therubyracer'
gem 'uglifier', '>= 1.0.3'
end
gem "jquery-rails"
gem 'bson_ext'
gem 'yajl-ruby'
gem 'will_paginate'
gem 'rack-ssl'
gem "bcrypt-ruby", :require => "bcrypt"
gem 'validate_url'
gem 'email_validator'
gem 'chronic'
gem 'jquery-rails'
gem 'orm_adapter', :git => 'git://github.com/timgaleckas/orm_adapter.git'
group :development, :test do
gem 'debugger'
gem 'rspec-rails'
gem 'authlogic'
gem 'pg'
end
group :test do
gem 'steak'
gem 'capybara'
gem 'selenium-client'
gem 'selenium-webdriver'
gem 'launchy'
gem 'shoulda'
gem 'factory_girl_rails'
gem 'webrat'
gem 'autotest'
gem 'autotest-growl'
gem 'database_cleaner'
gem 'fuubar'
gem 'watchr'
gem 'delorean'
gem 'rspec-set'
end