Codebase list ruby-omniauth-facebook / b0e73826-13c3-44e4-8701-597c0cd2e4c2/upstream omniauth-facebook.gemspec
b0e73826-13c3-44e4-8701-597c0cd2e4c2/upstream

Tree @b0e73826-13c3-44e4-8701-597c0cd2e4c2/upstream (Download .tar.gz)

omniauth-facebook.gemspec @b0e73826-13c3-44e4-8701-597c0cd2e4c2/upstreamraw · history · blame

# -*- 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', 'Josef Šimánek']
  s.email    = ['mark@madeofcode.com', 'retro@ballgag.cz']
  s.summary  = 'Facebook OAuth2 Strategy for OmniAuth'
  s.homepage = 'https://github.com/simi/omniauth-facebook'
  s.license  = 'MIT'

  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'

  s.add_development_dependency 'minitest'
  s.add_development_dependency 'mocha'
  s.add_development_dependency 'rake'
end