1
0
Fork 0
mirror of https://github.com/simi/omniauth-facebook.git synced 2022-11-09 12:32:45 -05:00
simi--omniauth-facebook/omniauth-facebook.gemspec
2012-05-05 00:52:26 -07:00

22 lines
782 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']
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']
s.add_runtime_dependency 'omniauth-oauth2', '~> 1.0.2'
s.add_development_dependency 'rspec', '~> 2'
s.add_development_dependency 'rake'
end