Sha256: eff72a239d53fe8c92f2c979ad40b7518599525573d53f27f27b8b4846f16881
Contents?: true
Size: 980 Bytes
Versions: 3
Compression:
Stored size: 980 Bytes
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'trestle/auth/version' Gem::Specification.new do |spec| spec.name = "trestle-auth" spec.version = Trestle::Auth::VERSION spec.authors = ["Sam Pohlenz"] spec.email = ["sam@sampohlenz.com"] spec.summary = "Authentication plugin for the Trestle admin framework" spec.description = "Authentication plugin for the Trestle admin framework." spec.homepage = "https://www.trestle.io" spec.license = "LGPL-3.0" spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.require_paths = ["lib"] spec.add_dependency "trestle", "~> 0.8" spec.add_dependency "bcrypt", "~> 3.1.7" spec.add_development_dependency "bundler", "~> 1.12" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.0" end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
trestle-auth-0.2.2 | trestle-auth.gemspec |
trestle-auth-0.2.1 | trestle-auth.gemspec |
trestle-auth-0.2.0 | trestle-auth.gemspec |