Sha256: 3af54eae9710fd781c01da1078014b14879441e9bd1166294dace2cf405f5da3
Contents?: true
Size: 1.86 KB
Versions: 1
Compression:
Stored size: 1.86 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'devise/token_authenticatable/version' Gem::Specification.new do |spec| spec.name = "devise-token_authenticatable" spec.version = Devise::TokenAuthenticatable::VERSION.dup spec.platform = Gem::Platform::RUBY spec.authors = ["Sebastian Oelke"] spec.email = ["dev@sohleeatsworld.de"] spec.description = %q{This gem provides the extracted Token Authenticatable module of devise. It enables the user to sign in via an authentication token. This token can be given via a query string or HTTP Basic Authentication.} spec.summary = %q{Provides authentication based on an authentication token for devise 3.2 and up.} spec.homepage = "https://github.com/baschtl/devise-token_authenticatable" spec.license = "MIT" spec.files = `git ls-files`.split($/) spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] spec.add_dependency "devise", "~> 3.2.0" spec.add_development_dependency "activerecord", ">= 3.2" spec.add_development_dependency "actionmailer", ">= 3.2" spec.add_development_dependency "rspec-rails" spec.add_development_dependency "pry" spec.add_development_dependency "factory_girl_rails" spec.add_development_dependency "timecop" spec.add_development_dependency "bundler", "~> 1.3" spec.add_development_dependency "rake" # Fix database connection with sqlite3 and jruby if RUBY_ENGINE == 'ruby' spec.add_development_dependency "sqlite3", "~> 1.3" elsif RUBY_ENGINE == 'jruby' spec.add_development_dependency "activerecord-jdbcsqlite3-adapter" end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
devise-token_authenticatable-0.1.0 | devise-token_authenticatable.gemspec |