-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathheimdallr.gemspec
25 lines (21 loc) · 1.11 KB
/
heimdallr.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
Gem::Specification.new do |s|
s.name = "heimdallr"
s.version = "1.0.6"
s.authors = ["Peter Zotov", "Boris Staal"]
s.email = ["[email protected]", "[email protected]"]
s.homepage = "https://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_runtime_dependency "orm_adapter", '~> 0.4.0'
s.add_development_dependency "rake"
end