2011-10-15 00:36:27 -07:00
|
|
|
# -*- encoding: utf-8 -*-
|
2011-10-28 16:21:24 -07:00
|
|
|
$:.push File.expand_path('../lib', __FILE__)
|
|
|
|
require 'omniauth/facebook/version'
|
2011-10-15 00:36:27 -07:00
|
|
|
|
|
|
|
Gem::Specification.new do |s|
|
|
|
|
s.name = 'omniauth-facebook'
|
|
|
|
s.version = OmniAuth::Facebook::VERSION
|
2013-11-14 01:07:40 -08:00
|
|
|
s.authors = ['Mark Dodwell', 'Josef Šimánek']
|
2013-11-14 01:07:57 -08:00
|
|
|
s.email = ['mark@madeofcode.com', 'retro@ballgag.cz']
|
2013-11-14 01:07:00 -08:00
|
|
|
s.summary = 'Facebook OAuth2 Strategy for OmniAuth'
|
2011-10-15 00:36:27 -07:00
|
|
|
s.homepage = 'https://github.com/mkdynamic/omniauth-facebook'
|
2013-02-05 13:23:52 +01:00
|
|
|
s.license = 'MIT'
|
2011-10-15 00:36:27 -07:00
|
|
|
|
|
|
|
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']
|
|
|
|
|
2012-07-08 01:41:17 -07:00
|
|
|
s.add_runtime_dependency 'omniauth-oauth2', '~> 1.1'
|
2011-10-15 00:36:27 -07:00
|
|
|
|
2012-07-01 16:45:22 -07:00
|
|
|
s.add_development_dependency 'minitest'
|
|
|
|
s.add_development_dependency 'mocha'
|
2011-10-15 21:17:54 -07:00
|
|
|
s.add_development_dependency 'rake'
|
2011-10-15 00:36:27 -07:00
|
|
|
end
|