Sha256: 6c2c318b935414a7ea599e2a6b7983191f6f06efe02fb4d3d50b1783d6e71ceb
Contents?: true
Size: 1.11 KB
Versions: 1
Compression:
Stored size: 1.11 KB
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) Gem::Specification.new do |s| s.name = "heimdallr" s.version = "1.0.3" s.authors = ["Peter Zotov", "Boris Staal"] s.email = ["whitequark@whitequark.org", "boris@roundlake.ru"] s.homepage = "http://github.com/roundlake/heimdallr" s.summary = %q{Heimdallr is an ActiveModel extension which provides object- and field-level access control.} s.description = %q{Heimdallr aims to provide an easy to configure and efficient object- and field-level access control solution, reusing proven patterns from gems like CanCan and allowing one to manage permissions in a very fine-grained manner.} 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 "activesupport", '>= 3.0.0' s.add_runtime_dependency "activemodel", '>= 3.0.0' s.add_development_dependency "rspec" s.add_development_dependency "activerecord" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
heimdallr-1.0.3 | heimdallr.gemspec |