Skip to content

Instantly share code, notes, and snippets.

@ghedamat
Created February 16, 2011 09:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ghedamat/829109 to your computer and use it in GitHub Desktop.
Save ghedamat/829109 to your computer and use it in GitHub Desktop.
Gemfile 0.9.17
GEM
remote: http://rubygems.org/
specs:
activemodel (3.0.0)
activesupport (= 3.0.0)
builder (~> 2.1.2)
i18n (~> 0.4.1)
activerecord (3.0.0)
activemodel (= 3.0.0)
activesupport (= 3.0.0)
arel (~> 1.0.0)
tzinfo (~> 0.3.23)
activesupport (3.0.0)
arel (1.0.1)
activesupport (~> 3.0.0)
aws-s3 (0.6.2)
builder
mime-types
xml-simple
builder (2.1.2)
daemons (1.1.0)
eventmachine (0.12.10)
git (1.2.5)
haml (3.0.21)
http_router (0.4.0)
rack (>= 1.0)
url_mount (>= 0.2.1)
i18n (0.4.1)
macaddr (1.0.0)
mail (2.2.7)
activesupport (>= 2.3.6)
mime-types
treetop (>= 1.4.5)
mime-types (1.16)
padrino (0.9.17)
padrino-admin (= 0.9.17)
padrino-core (= 0.9.17)
padrino-gen (= 0.9.17)
padrino-helpers (= 0.9.17)
padrino-mailer (= 0.9.17)
padrino-admin (0.9.17)
padrino-core (= 0.9.17)
padrino-helpers (= 0.9.17)
padrino-core (0.9.17)
activesupport (>= 3.0.0)
http_router (~> 0.4.0)
sinatra (>= 1.0.0)
thor (>= 0.14.3)
tzinfo
padrino-gen (0.9.17)
bundler (>= 1.0.2)
git
padrino-core (= 0.9.17)
padrino-helpers (0.9.17)
i18n (>= 0.4.1)
padrino-core (= 0.9.17)
padrino-mailer (0.9.17)
mail (>= 2.2.0)
padrino-core (= 0.9.17)
pg (0.10.1)
polyglot (0.3.1)
pony (1.0.1)
mail (> 2.0)
rack (1.2.1)
rack-flash (0.1.1)
rack
rack-google-analytics (0.9.2)
rack-test (0.5.6)
rack (>= 1.0)
rake (0.8.7)
shoulda (2.11.3)
sinatra (1.1.0)
rack (~> 1.1)
tilt (~> 1.1)
sqlite3-ruby (1.3.1)
thin (1.2.7)
daemons (>= 1.0.9)
eventmachine (>= 0.12.6)
rack (>= 1.0.0)
thor (0.14.3)
tilt (1.1)
treetop (1.4.8)
polyglot (>= 0.3.1)
tzinfo (0.3.23)
url_mount (0.2.1)
rack
uuid (2.3.1)
macaddr (~> 1.0)
xml-simple (1.0.12)
PLATFORMS
ruby
DEPENDENCIES
activerecord
aws-s3
haml
padrino (= 0.9.17)
pg
pony
rack-flash
rack-google-analytics
rack-test
rake
shoulda
sqlite3-ruby
thin
uuid
source :rubygems
# Project requirements
gem 'rake'
gem 'rack-flash'
gem 'thin' # or mongrel
# Component requirements
gem 'rack-google-analytics', :require => "rack/google-analytics"
gem 'haml'
gem 'activerecord', :require => "active_record"
gem 'sqlite3-ruby', :require => "sqlite3"
# Test requirements
gem 'shoulda', :group => "test"
gem 'rack-test', :require => "rack/test", :group => "test"
#Amazon S3 Gem
gem 'aws-s3'
#Uuid generation gem
gem 'uuid'
#Mail sender
gem 'pony'
# Padrino
gem 'padrino', "0.9.17"
group :test do
gem 'pg'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment