Skip to content

Commit

Permalink
port from rails3.1 to rails3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nov committed Aug 29, 2011
0 parents commit 1f9576f
Show file tree
Hide file tree
Showing 76 changed files with 2,139 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.bundle
db/*.sqlite3
log/*.log
tmp/
18 changes: 18 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
source 'http://rubygems.org'

gem 'rails', '3.0.10'
gem 'jquery-rails'
gem 'openid_connect'

group :development, :test do
gem 'sqlite3'
end

group :test do
gem 'turn', :require => false
end

group :production do
gem 'pg'
gem 'rack-ssl', :require => 'rack/ssl'
end
123 changes: 123 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,123 @@
GEM
remote: http://rubygems.org/
specs:
abstract (1.0.0)
actionmailer (3.0.10)
actionpack (= 3.0.10)
mail (~> 2.2.19)
actionpack (3.0.10)
activemodel (= 3.0.10)
activesupport (= 3.0.10)
builder (~> 2.1.2)
erubis (~> 2.6.6)
i18n (~> 0.5.0)
rack (~> 1.2.1)
rack-mount (~> 0.6.14)
rack-test (~> 0.5.7)
tzinfo (~> 0.3.23)
activemodel (3.0.10)
activesupport (= 3.0.10)
builder (~> 2.1.2)
i18n (~> 0.5.0)
activerecord (3.0.10)
activemodel (= 3.0.10)
activesupport (= 3.0.10)
arel (~> 2.0.10)
tzinfo (~> 0.3.23)
activeresource (3.0.10)
activemodel (= 3.0.10)
activesupport (= 3.0.10)
activesupport (3.0.10)
ansi (1.3.0)
arel (2.0.10)
attr_required (0.0.3)
builder (2.1.2)
erubis (2.6.6)
abstract (>= 1.0.0)
httpclient (2.2.1)
i18n (0.5.0)
jquery-rails (1.0.13)
railties (~> 3.0)
thor (~> 0.14)
json (1.5.3)
jwt (0.1.3)
json (>= 1.2.4)
mail (2.2.19)
activesupport (>= 2.3.6)
i18n (>= 0.4.0)
mime-types (~> 1.16)
treetop (~> 1.4.8)
mime-types (1.16)
openid_connect (0.0.16)
activemodel (>= 3)
attr_required (>= 0.0.3)
json (>= 1.4.3)
jwt (>= 0.1.3)
rack-oauth2 (>= 0.9)
swd (>= 0.0.4)
tzinfo
validate_email
validate_url
pg (0.11.0)
polyglot (0.3.2)
rack (1.2.3)
rack-mount (0.6.14)
rack (>= 1.0.0)
rack-oauth2 (0.9.2)
activesupport (>= 2.3)
attr_required (>= 0.0.3)
httpclient (>= 2.2.0.2)
i18n
json (>= 1.4.3)
rack (>= 1.1)
rack-ssl (1.3.2)
rack
rack-test (0.5.7)
rack (>= 1.0)
rails (3.0.10)
actionmailer (= 3.0.10)
actionpack (= 3.0.10)
activerecord (= 3.0.10)
activeresource (= 3.0.10)
activesupport (= 3.0.10)
bundler (~> 1.0)
railties (= 3.0.10)
railties (3.0.10)
actionpack (= 3.0.10)
activesupport (= 3.0.10)
rake (>= 0.8.7)
rdoc (~> 3.4)
thor (~> 0.14.4)
rake (0.9.2)
rdoc (3.9.4)
sqlite3 (1.3.4)
swd (0.0.4)
activesupport (>= 3)
attr_required (>= 0.0.3)
httpclient (>= 2.2.1)
i18n
json (>= 1.4.3)
thor (0.14.6)
treetop (1.4.10)
polyglot
polyglot (>= 0.3.1)
turn (0.8.2)
ansi (>= 1.2.2)
tzinfo (0.3.29)
validate_email (0.1.5)
activemodel (>= 3.0)
mail (>= 2.2.5)
validate_url (0.2.0)
activemodel (>= 3.0.0)

PLATFORMS
ruby

DEPENDENCIES
jquery-rails
openid_connect
pg
rack-ssl
rails (= 3.0.10)
sqlite3
turn
Loading

0 comments on commit 1f9576f

Please sign in to comment.