Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
kyleshank committed Jan 5, 2011
0 parents commit 193e689
Show file tree
Hide file tree
Showing 131 changed files with 9,814 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .bundle/config
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-BUNDLE_PATH: vendor/bundle
-BUNDLE_DISABLE_SHARED_GEMS: "1"
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
db/*.sqlite3
log/*.log
tmp/**/*
config/database.yml
.idea
config/environments/production.rb
4 changes: 4 additions & 0 deletions Capfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
load 'deploy' if respond_to?(:namespace) # cap2 differentiator
Dir['vendor/plugins/*/recipes/*.rb'].each { |plugin| load(plugin) }

load 'config/deploy' # remove this line to skip loading any of the default tasks
13 changes: 13 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
source 'http://rubygems.org'

gem 'rails', '3.0.3'
gem 'mysql2'
gem 'oauth'
gem 'oauth-plugin'
gem 'twitter'
gem "delayed_job", :git => 'git://github.com/collectiveidea/delayed_job.git'
gem 'will_paginate'
gem 'jquery-rails'
gem 'authlogic'

gem 'unicorn'
122 changes: 122 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,122 @@
GIT
remote: git://github.com/collectiveidea/delayed_job.git
revision: 411719b38c51a7fbd060ea139fd64adb20107a5d
specs:
delayed_job (2.1.2)
activesupport (~> 3.0)
daemons

GEM
remote: http://rubygems.org/
specs:
abstract (1.0.0)
actionmailer (3.0.3)
actionpack (= 3.0.3)
mail (~> 2.2.9)
actionpack (3.0.3)
activemodel (= 3.0.3)
activesupport (= 3.0.3)
builder (~> 2.1.2)
erubis (~> 2.6.6)
i18n (~> 0.4)
rack (~> 1.2.1)
rack-mount (~> 0.6.13)
rack-test (~> 0.5.6)
tzinfo (~> 0.3.23)
activemodel (3.0.3)
activesupport (= 3.0.3)
builder (~> 2.1.2)
i18n (~> 0.4)
activerecord (3.0.3)
activemodel (= 3.0.3)
activesupport (= 3.0.3)
arel (~> 2.0.2)
tzinfo (~> 0.3.23)
activeresource (3.0.3)
activemodel (= 3.0.3)
activesupport (= 3.0.3)
activesupport (3.0.3)
addressable (2.2.2)
arel (2.0.4)
authlogic (2.1.6)
activesupport
builder (2.1.2)
daemons (1.1.0)
erubis (2.6.6)
abstract (>= 1.0.0)
faraday (0.5.3)
addressable (~> 2.2.2)
multipart-post (~> 1.0.1)
rack (>= 1.1.0, < 2)
faraday_middleware (0.3.1)
faraday (~> 0.5.3)
hashie (0.4.0)
i18n (0.4.2)
jquery-rails (0.2.6)
rails (~> 3.0)
thor (~> 0.14.4)
kgio (2.1.1)
mail (2.2.10)
activesupport (>= 2.3.6)
i18n (~> 0.4.1)
mime-types (~> 1.16)
treetop (~> 1.4.8)
mime-types (1.16)
multi_json (0.0.5)
multi_xml (0.2.0)
multipart-post (1.0.1)
mysql2 (0.2.6)
oauth (0.4.4)
oauth-plugin (0.3.14)
oauth (>= 0.3.5)
polyglot (0.3.1)
rack (1.2.1)
rack-mount (0.6.13)
rack (>= 1.0.0)
rack-test (0.5.6)
rack (>= 1.0)
rails (3.0.3)
actionmailer (= 3.0.3)
actionpack (= 3.0.3)
activerecord (= 3.0.3)
activeresource (= 3.0.3)
activesupport (= 3.0.3)
bundler (~> 1.0)
railties (= 3.0.3)
railties (3.0.3)
actionpack (= 3.0.3)
activesupport (= 3.0.3)
rake (>= 0.8.7)
thor (~> 0.14.4)
rake (0.8.7)
simple_oauth (0.1.3)
thor (0.14.6)
treetop (1.4.9)
polyglot (>= 0.3.1)
twitter (1.0.0)
faraday (~> 0.5.3)
faraday_middleware (~> 0.3.0)
hashie (~> 0.4.0)
multi_json (~> 0.0.5)
multi_xml (~> 0.2.0)
simple_oauth (~> 0.1.2)
tzinfo (0.3.23)
unicorn (3.2.1)
kgio (~> 2.1)
rack
will_paginate (2.3.15)

PLATFORMS
ruby

DEPENDENCIES
authlogic
delayed_job!
jquery-rails
mysql2
oauth
oauth-plugin
rails (= 3.0.3)
twitter
unicorn
will_paginate
Loading

0 comments on commit 193e689

Please sign in to comment.