Sha256: 2923b6f799328c8978371e71f0c4a9c65db84abd26b47980a76ad0073388b82d

Contents?: true

Size: 1.38 KB

Versions: 14

Compression:

Stored size: 1.38 KB

Contents

# -*- encoding: utf-8 -*-
$LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
require 'koala/version'

Gem::Specification.new do |gem|
  gem.name        = "koala"
  gem.summary     = "A lightweight, flexible library for Facebook with support for the Graph API, the REST API, realtime updates, and OAuth authentication."
  gem.description = "Koala is a lightweight, flexible Ruby SDK for Facebook.  It allows read/write access to the social graph via the Graph and REST APIs, 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."
  gem.licenses    = ['MIT']
  gem.homepage    = "http://github.com/arsduo/koala"
  gem.version     = Koala::VERSION

  gem.authors     = ["Alex Koppel"]
  gem.email       = "alex@alexkoppel.com"

  gem.require_paths  = ["lib"]
  gem.files          = `git ls-files`.split("\n")
  gem.test_files     = `git ls-files -- {test,spec,features}/*`.split("\n")
  gem.executables    = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }

  gem.extra_rdoc_files = ["readme.md", "changelog.md"]
  gem.rdoc_options     = ["--line-numbers", "--inline-source", "--title", "Koala"]

  gem.add_runtime_dependency("multi_json")
  gem.add_runtime_dependency("faraday")
  gem.add_runtime_dependency("addressable")
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
koala-2.3.0 koala.gemspec
koala-2.3.0rc1 koala.gemspec
koala-2.2.0 koala.gemspec
koala-2.2.0rc3 koala.gemspec
koala-2.2.0rc2 koala.gemspec
koala-2.2.0rc1 koala.gemspec
koala-2.0.0 koala.gemspec
koala-2.0.0rc1 koala.gemspec
koala-1.11.1 koala.gemspec
koala-1.11.0 koala.gemspec
koala-1.11.0rc koala.gemspec
koala-1.10.1 koala.gemspec
koala-1.10.0 koala.gemspec
koala-1.10.0rc2 koala.gemspec