Sha256: b540be56510fa18628b10431b86336587d985de0e8a3d093d50225081513cbbf
Contents?: true
Size: 1.4 KB
Versions: 1
Compression:
Stored size: 1.4 KB
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "auth0/version" Gem::Specification.new do |s| s.name = "auth0-ruby" s.version = Auth0::VERSION s.authors = ["Auth0", "Ezequiel Morito", "Jose Romaniello", "Petroe Ivan"] s.email = ["petroei@gmail.com"] s.homepage = "https://github.com/offtop/ruby-auth0" s.summary = %q{Ruby client library for the Auth0 platform.} s.description = %q{Ruby client library for the Auth0 platform. This is fork of https://github.com/auth0/ruby-auth0, but while auth0 is not hurring to merge prs, I've decided to make my own gem with blackjack and hookers. But I really recommend you to switch to ruby-auth0 gem after pr-9 will be merged.} 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 'httparty', '~> 0.13' s.required_ruby_version = '>= 1.9.3' s.add_development_dependency 'rspec', '~> 3.1.0', '>= 3.1.0' s.add_development_dependency 'rack-test' s.add_development_dependency 'simplecov' s.add_development_dependency 'webmock' s.add_development_dependency 'byebug' s.add_development_dependency 'faker' s.add_development_dependency 'yard' s.add_development_dependency 'jwt' s.license = 'MIT' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
auth0-ruby-0.9.1 | auth0.gemspec |