simi--omniauth-facebook/omniauth-facebook.gemspec

25 lines
875 B
Ruby
Raw Normal View History

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