mirror of
https://github.com/simi/omniauth-facebook.git
synced 2022-11-09 12:32:45 -05:00
24 lines
880 B
Ruby
24 lines
880 B
Ruby
# -*- encoding: utf-8 -*-
|
|
$:.push File.expand_path('../lib', __FILE__)
|
|
require 'omniauth/facebook/version'
|
|
|
|
Gem::Specification.new do |s|
|
|
s.name = 'omniauth-facebook'
|
|
s.version = OmniAuth::Facebook::VERSION
|
|
s.authors = ['Mark Dodwell', 'Josef Šimánek']
|
|
s.email = ['mark@madeofcode.com', 'retro@ballgag.cz']
|
|
s.summary = 'Facebook OAuth2 Strategy for OmniAuth'
|
|
s.homepage = 'https://github.com/mkdynamic/omniauth-facebook'
|
|
s.license = 'MIT'
|
|
|
|
s.files = `git ls-files`.split("\n")
|
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
|
|
s.require_paths = ['lib']
|
|
|
|
s.add_runtime_dependency 'omniauth-oauth2', '~> 1.1'
|
|
|
|
s.add_development_dependency 'minitest'
|
|
s.add_development_dependency 'mocha'
|
|
s.add_development_dependency 'rake'
|
|
end
|