Sha256: a5055416d4deab6c209df75f407a1b443c5d15012cafce8decdc08febc92d3c0
Contents?: true
Size: 1.33 KB
Versions: 2
Compression:
Stored size: 1.33 KB
Contents
# coding: utf-8 # frozen_string_literal: true lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'g5_authenticatable/version' Gem::Specification.new do |spec| spec.name = 'g5_authenticatable' spec.version = G5Authenticatable::VERSION spec.authors = ['maeve'] spec.email = ['maeve.revels@getg5.com'] spec.summary = 'An authentication engine for G5 applications.' spec.description = 'An engine that provides a basic User model, ' \ 'authentication logic, and remote credential ' \ 'management for G5 applications.' spec.homepage = 'https://github.com/G5/g5_authenticatable' spec.license = 'MIT' spec.files = `git ls-files -z`.split("\x0") 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_g5_authenticatable', '1.0.0.pre.1' spec.add_dependency 'g5_authenticatable_api', '1.0.0.pre.1' spec.add_dependency 'rolify', '~> 4.0' spec.add_dependency 'pundit', '~> 1.0' spec.add_dependency 'g5_updatable', '> 0.6.0' spec.add_development_dependency 'factory_girl_rails', '~> 4.8' spec.add_development_dependency 'webmock' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
g5_authenticatable-1.0.0.pre.2 | g5_authenticatable.gemspec |
g5_authenticatable-1.0.0.pre.1 | g5_authenticatable.gemspec |