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
|
|
|
|
s.authors = ['Mark Dodwell']
|
|
|
|
s.email = ['mark@mkdynamic.co.uk']
|
|
|
|
s.summary = 'Facebook strategy for OmniAuth'
|
|
|
|
s.homepage = 'https://github.com/mkdynamic/omniauth-facebook'
|
|
|
|
|
|
|
|
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']
|
|
|
|
|
2011-11-11 01:27:20 -05:00
|
|
|
s.add_runtime_dependency 'omniauth-oauth2', '~> 1.0.0'
|
2011-10-15 03:36:27 -04:00
|
|
|
|
2011-10-28 19:24:04 -04:00
|
|
|
s.add_development_dependency 'rspec', '~> 2.7.0'
|
2011-10-16 00:17:54 -04:00
|
|
|
s.add_development_dependency 'rake'
|
2011-10-15 03:36:27 -04:00
|
|
|
end
|