From b980f679acecd8d9d0557a25451982d901809621 Mon Sep 17 00:00:00 2001 From: Roland Date: Fri, 1 Jul 2011 00:13:38 +0200 Subject: [PATCH] Add twitter gem. Update rails from 3.0.7 to 3.0.9. --- Gemfile | 5 +++- Gemfile.lock | 80 +++++++++++++++++++++++++++++++++------------------- 2 files changed, 55 insertions(+), 30 deletions(-) diff --git a/Gemfile b/Gemfile index 54d700c..c471c43 100644 --- a/Gemfile +++ b/Gemfile @@ -1,7 +1,7 @@ # -*- mode: yaml; -*- source 'http://rubygems.org' -gem 'rails', '3.0.7' +gem 'rails', '3.0.9' # don't use version 0.9.0 for now as it's known for causing trouble /w rails gem 'rake', '0.8.7' @@ -24,6 +24,9 @@ gem 'cancan', '1.6.5' # Deploy with Capistrano gem 'capistrano', '2.5.21' +# https://github.com/jnunemaker/twitter +gem 'twitter', '1.6.0' + # To use debugger (ruby-debug for Ruby 1.8.7+, ruby-debug19 for Ruby 1.9.2+) # gem 'ruby-debug' # gem 'ruby-debug19', :require => 'ruby-debug' diff --git a/Gemfile.lock b/Gemfile.lock index 294b0aa..5c585f4 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -2,12 +2,12 @@ GEM remote: http://rubygems.org/ specs: abstract (1.0.0) - actionmailer (3.0.7) - actionpack (= 3.0.7) - mail (~> 2.2.15) - actionpack (3.0.7) - activemodel (= 3.0.7) - activesupport (= 3.0.7) + actionmailer (3.0.9) + actionpack (= 3.0.9) + mail (~> 2.2.19) + actionpack (3.0.9) + activemodel (= 3.0.9) + activesupport (= 3.0.9) builder (~> 2.1.2) erubis (~> 2.6.6) i18n (~> 0.5.0) @@ -15,20 +15,21 @@ GEM rack-mount (~> 0.6.14) rack-test (~> 0.5.7) tzinfo (~> 0.3.23) - activemodel (3.0.7) - activesupport (= 3.0.7) + activemodel (3.0.9) + activesupport (= 3.0.9) builder (~> 2.1.2) i18n (~> 0.5.0) - activerecord (3.0.7) - activemodel (= 3.0.7) - activesupport (= 3.0.7) - arel (~> 2.0.2) + activerecord (3.0.9) + activemodel (= 3.0.9) + activesupport (= 3.0.9) + arel (~> 2.0.10) tzinfo (~> 0.3.23) - activeresource (3.0.7) - activemodel (= 3.0.7) - activesupport (= 3.0.7) - activesupport (3.0.7) - arel (2.0.9) + activeresource (3.0.9) + activemodel (= 3.0.9) + activesupport (= 3.0.9) + activesupport (3.0.9) + addressable (2.2.6) + arel (2.0.10) bcrypt-ruby (2.1.4) builder (2.1.2) cancan (1.6.5) @@ -44,14 +45,24 @@ GEM warden (~> 1.0.3) erubis (2.6.6) abstract (>= 1.0.0) + faraday (0.6.1) + addressable (~> 2.2.4) + multipart-post (~> 1.1.0) + rack (< 2, >= 1.1.0) + faraday_middleware (0.6.5) + faraday (~> 0.6.0) + hashie (1.0.0) highline (1.6.1) i18n (0.5.0) - mail (2.2.15) + mail (2.2.19) activesupport (>= 2.3.6) i18n (>= 0.4.0) mime-types (~> 1.16) treetop (~> 1.4.8) mime-types (1.16) + multi_json (1.0.3) + multi_xml (0.2.2) + multipart-post (1.1.2) mysql2 (0.2.7) net-scp (1.0.4) net-ssh (>= 1.99.1) @@ -67,23 +78,33 @@ GEM rack (>= 1.0.0) rack-test (0.5.7) rack (>= 1.0) - rails (3.0.7) - actionmailer (= 3.0.7) - actionpack (= 3.0.7) - activerecord (= 3.0.7) - activeresource (= 3.0.7) - activesupport (= 3.0.7) + rails (3.0.9) + actionmailer (= 3.0.9) + actionpack (= 3.0.9) + activerecord (= 3.0.9) + activeresource (= 3.0.9) + activesupport (= 3.0.9) bundler (~> 1.0) - railties (= 3.0.7) - railties (3.0.7) - actionpack (= 3.0.7) - activesupport (= 3.0.7) + railties (= 3.0.9) + railties (3.0.9) + actionpack (= 3.0.9) + activesupport (= 3.0.9) rake (>= 0.8.7) + rdoc (~> 3.4) thor (~> 0.14.4) rake (0.8.7) + rdoc (3.8) + simple_oauth (0.1.5) thor (0.14.6) treetop (1.4.9) polyglot (>= 0.3.1) + twitter (1.6.0) + faraday (~> 0.6.1) + faraday_middleware (~> 0.6.3) + hashie (~> 1.0.0) + multi_json (~> 1.0.0) + multi_xml (~> 0.2.0) + simple_oauth (~> 0.1.5) tzinfo (0.3.26) warden (1.0.3) rack (>= 1.0.0) @@ -98,5 +119,6 @@ DEPENDENCIES capistrano (= 2.5.21) devise (= 1.2.1) mysql2 (= 0.2.7) - rails (= 3.0.7) + rails (= 3.0.9) rake (= 0.8.7) + twitter (= 1.6.0)