mirror of
https://github.com/tappollo/omniauth-facebook-access-token.git
synced 2026-01-12 17:03:05 +08:00
21 lines
884 B
Ruby
21 lines
884 B
Ruby
# -*- encoding: utf-8 -*-
|
|
require File.expand_path('../lib/omniauth-facebook-access-token/version', __FILE__)
|
|
|
|
Gem::Specification.new do |gem|
|
|
gem.add_runtime_dependency 'omniauth-oauth2', '~> 1.2'
|
|
|
|
|
|
gem.authors = ["Dor Shahaf"]
|
|
gem.email = ["dor@shahaf.com"]
|
|
gem.license = 'MIT'
|
|
gem.description = %q{A Facebook using access-token strategy for OmniAuth. Can be used for client side Facebook login. }
|
|
gem.summary = %q{A Facebook using access-token strategy for OmniAuth.}
|
|
gem.homepage = "https://github.com/soapseller/omniauth-facebook-access-token"
|
|
|
|
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
gem.files = `git ls-files`.split("\n")
|
|
gem.name = "omniauth-facebook-access-token"
|
|
gem.require_paths = ["lib"]
|
|
gem.version = OmniAuth::FacebookAccessToken::VERSION
|
|
end
|