Skip to content

Commit

Permalink
Removed examples directory and updated gemfile to explicitly depend o…
Browse files Browse the repository at this point in the history
…n JSON.
  • Loading branch information
arsduo committed Oct 13, 2010
1 parent 54bc69d commit 0d70d94
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 19 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG
@@ -1,5 +1,7 @@
v0.9.1
-- Tests are now compatible with Ruby 1.9.2
-- Added JSON to runtime dependencies
-- Removed examples directory (referenced from github instead)

v0.9.0
-- Added parse_signed_request to handle Facebook's new authentication scheme
Expand Down
14 changes: 0 additions & 14 deletions Manifest
Expand Up @@ -2,20 +2,6 @@ CHANGELOG
LICENSE
Manifest
Rakefile
examples/oauth_playground/Capfile
examples/oauth_playground/LICENSE
examples/oauth_playground/Rakefile
examples/oauth_playground/config.ru
examples/oauth_playground/config/deploy.rb
examples/oauth_playground/config/facebook.yml
examples/oauth_playground/lib/load_facebook.rb
examples/oauth_playground/lib/oauth_playground.rb
examples/oauth_playground/readme.md
examples/oauth_playground/spec/oauth_playground_spec.rb
examples/oauth_playground/spec/spec_helper.rb
examples/oauth_playground/tmp/restart.txt
examples/oauth_playground/views/index.erb
examples/oauth_playground/views/layout.erb
init.rb
koala.gemspec
lib/koala.rb
Expand Down
3 changes: 2 additions & 1 deletion Rakefile
Expand Up @@ -4,13 +4,14 @@ require 'rake'
require 'echoe'

# gem management
Echoe.new('koala', '0.9.0') do |p|
Echoe.new('koala', '0.9.1') do |p|
p.summary = "A lightweight, flexible library for Facebook with support for the Graph API, the old REST API, realtime updates, and OAuth validation."
p.description = "Koala is a lightweight, flexible Ruby SDK for Facebook. It allows read/write access to the social graph via the Graph API and the older REST API, as well as support for realtime updates and OAuth and Facebook Connect authentication. Koala is fully tested and supports Net::HTTP and Typhoeus connections out of the box and can accept custom modules for other services."
p.url = "http://github.com/arsduo/koala"
p.author = ["Alex Koppel", "Chris Baclig", "Rafi Jacoby", "Context Optional"]
p.email = "alex@alexkoppel.com"
p.ignore_pattern = ["tmp/*", "script/*", "pkg/*"]
p.runtime_dependencies = ["json"]
p.development_dependencies = []
p.retain_gemspec = true
end
1 change: 0 additions & 1 deletion examples/oauth_playground
Submodule oauth_playground deleted from d0ba6c
9 changes: 6 additions & 3 deletions koala.gemspec
Expand Up @@ -2,15 +2,15 @@

Gem::Specification.new do |s|
s.name = %q{koala}
s.version = "0.9.0"
s.version = "0.9.1"

s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
s.authors = ["Alex Koppel, Chris Baclig, Rafi Jacoby, Context Optional"]
s.date = %q{2010-09-30}
s.date = %q{2010-10-13}
s.description = %q{Koala is a lightweight, flexible Ruby SDK for Facebook. It allows read/write access to the social graph via the Graph API and the older REST API, as well as support for realtime updates and OAuth and Facebook Connect authentication. Koala is fully tested and supports Net::HTTP and Typhoeus connections out of the box and can accept custom modules for other services.}
s.email = %q{alex@alexkoppel.com}
s.extra_rdoc_files = ["CHANGELOG", "LICENSE", "lib/koala.rb", "lib/koala/graph_api.rb", "lib/koala/http_services.rb", "lib/koala/realtime_updates.rb", "lib/koala/rest_api.rb"]
s.files = ["CHANGELOG", "LICENSE", "Manifest", "Rakefile", "examples/oauth_playground/Capfile", "examples/oauth_playground/LICENSE", "examples/oauth_playground/Rakefile", "examples/oauth_playground/config.ru", "examples/oauth_playground/config/deploy.rb", "examples/oauth_playground/config/facebook.yml", "examples/oauth_playground/lib/load_facebook.rb", "examples/oauth_playground/lib/oauth_playground.rb", "examples/oauth_playground/readme.md", "examples/oauth_playground/spec/oauth_playground_spec.rb", "examples/oauth_playground/spec/spec_helper.rb", "examples/oauth_playground/tmp/restart.txt", "examples/oauth_playground/views/index.erb", "examples/oauth_playground/views/layout.erb", "init.rb", "koala.gemspec", "lib/koala.rb", "lib/koala/graph_api.rb", "lib/koala/http_services.rb", "lib/koala/realtime_updates.rb", "lib/koala/rest_api.rb", "readme.md", "spec/facebook_data.yml", "spec/koala/api_base_tests.rb", "spec/koala/graph_and_rest_api/graph_and_rest_api_no_token_tests.rb", "spec/koala/graph_and_rest_api/graph_and_rest_api_with_token_tests.rb", "spec/koala/graph_api/graph_api_no_access_token_tests.rb", "spec/koala/graph_api/graph_api_with_access_token_tests.rb", "spec/koala/graph_api/graph_collection_tests.rb", "spec/koala/live_testing_data_helper.rb", "spec/koala/net_http_service_tests.rb", "spec/koala/oauth/oauth_tests.rb", "spec/koala/realtime_updates/realtime_updates_tests.rb", "spec/koala/rest_api/rest_api_no_access_token_tests.rb", "spec/koala/rest_api/rest_api_with_access_token_tests.rb", "spec/koala_spec.rb", "spec/koala_spec_helper.rb", "spec/koala_spec_without_mocks.rb", "spec/mock_facebook_responses.yml", "spec/mock_http_service.rb"]
s.files = ["CHANGELOG", "LICENSE", "Manifest", "Rakefile", "init.rb", "koala.gemspec", "lib/koala.rb", "lib/koala/graph_api.rb", "lib/koala/http_services.rb", "lib/koala/realtime_updates.rb", "lib/koala/rest_api.rb", "readme.md", "spec/facebook_data.yml", "spec/koala/api_base_tests.rb", "spec/koala/graph_and_rest_api/graph_and_rest_api_no_token_tests.rb", "spec/koala/graph_and_rest_api/graph_and_rest_api_with_token_tests.rb", "spec/koala/graph_api/graph_api_no_access_token_tests.rb", "spec/koala/graph_api/graph_api_with_access_token_tests.rb", "spec/koala/graph_api/graph_collection_tests.rb", "spec/koala/live_testing_data_helper.rb", "spec/koala/net_http_service_tests.rb", "spec/koala/oauth/oauth_tests.rb", "spec/koala/realtime_updates/realtime_updates_tests.rb", "spec/koala/rest_api/rest_api_no_access_token_tests.rb", "spec/koala/rest_api/rest_api_with_access_token_tests.rb", "spec/koala_spec.rb", "spec/koala_spec_helper.rb", "spec/koala_spec_without_mocks.rb", "spec/mock_facebook_responses.yml", "spec/mock_http_service.rb"]
s.homepage = %q{http://github.com/arsduo/koala}
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Koala", "--main", "readme.md"]
s.require_paths = ["lib"]
Expand All @@ -23,8 +23,11 @@ Gem::Specification.new do |s|
s.specification_version = 3

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<json>, [">= 0"])
else
s.add_dependency(%q<json>, [">= 0"])
end
else
s.add_dependency(%q<json>, [">= 0"])
end
end

0 comments on commit 0d70d94

Please sign in to comment.