Sha256: 8896eb8bd08d44b1b7bc268ebb9ad6cf4177051316e7c91f3e21cf4db1850ddf

Contents?: true

Size: 798 Bytes

Versions: 1

Compression:

Stored size: 798 Bytes

Contents

# Provide a simple gemspec so you can easily use your enginex
# project in your rails apps through git.
require File.expand_path('../lib/oauth_provider_engine/version', __FILE__)
Gem::Specification.new do |s|
  s.name = "oauth_provider_engine"
  s.version = OauthProviderEngine::VERSION
  s.description = 'A Rails Engine that allow the site to act as an OAuth provider'
  s.summary = 'A Rails Engine that allow the site to act as an OAuth provider'
  s.add_dependency "rails", ">= 3.0.0"
  s.add_dependency "oauth", "~> 0.4.0"

  s.author = "Jeff Ching"
  s.email = "jeff@chingr.com"
  s.homepage = "http://github.com/chingor13/oauth_provider_engine"
  s.extra_rdoc_files = ['README.rdoc']
  s.has_rdoc = true

  s.files = `git ls-files`.split("\n")
  s.test_files = Dir.glob('test/*_test.rb')
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
oauth_provider_engine-0.0.5 oauth_provider_engine.gemspec