Sha256: 44ca76632b94a4e2e902cd3110de8f8002ab0e47be9166c9c39c7a3123ccac2e
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 = "0.0.2" s.authors = ["Peter Zotov"] s.email = ["whitequark@whitequark.org"] 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.rubyforge_project = "heimdallr" 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-0.0.2 | heimdallr.gemspec |