Sha256: 8a7eccfe99d02439c87540386a3cb87823a0bcf04a47147daddb6a0568390d96
Contents?: true
Size: 1.79 KB
Versions: 1
Compression:
Stored size: 1.79 KB
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "authengine/version" Gem::Specification.new do |s| s.name = "authengine" s.version = Authengine::VERSION s.platform = Gem::Platform::RUBY s.authors = ["Les Nightingill"] s.email = ["codehacker@comcast.net"] s.homepage = "" s.summary = %q{Unobtrusive authentication and authorization engine} s.description = %q{A rails authentication and authorization engine that reduces clutter in your controllers and views. Includes aliased link_to and button_to helpers that return an empty string if the current user is not permitted to follow the link. Authorization configuration is removed from the controllers and instead is stored in the database and configured through html views.} s.rubyforge_project = "authengine" 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"] # one would think that these were development dependencies, # but they are only installed when calling bundle from the # host application if they are runtime dependencies! (bug? # or misunderstanding?) s.add_dependency 'rspec', '>= 2.0.0' s.add_dependency 'rails', '~>3.2.5' s.add_dependency 'sqlite3-ruby' s.add_dependency 'capybara' s.add_dependency 'rspec-rails', ">= 2.0.0" s.add_dependency 'flexmock' s.add_dependency 'faker' s.add_dependency 'message_block' s.add_dependency 'haml' s.add_dependency 'factory_girl_rails' s.add_dependency 'database_cleaner' s.add_dependency 'jasmine' s.add_dependency 'jasminerice' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
authengine-0.0.2 | authengine.gemspec |