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