forked from james2m/canard
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcanard.gemspec
34 lines (28 loc) · 1.28 KB
/
canard.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
26
27
28
29
30
31
32
33
34
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "canard/version"
Gem::Specification.new do |s|
s.name = "canard"
s.version = Canard::VERSION
s.date = `git log -1 --format="%cd" --date=short lib/canard/version.rb`
s.authors = ["James McCarthy"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/james2m/canard"
s.summary = %q{Adds role based authorisation to Rails by combining RoleModel and CanCan.}
s.description = %q{Wraps CanCan and RoleModel up to make role based authorisation really easy in Rails 3.x.}
s.rubyforge_project = "canard"
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_development_dependency "minitest", "~> 2"
s.add_development_dependency "rails", "~> 3.2.3"
if RUBY_VERSION < '1.9'
s.add_development_dependency "mongoid", "~> 2.0"
else
s.add_development_dependency "mongoid", "~> 3.0"
end
s.requirements << 'cancan for Rails3 and earlier or the Rails4 compatible cancancan fork.'
s.add_runtime_dependency "cancancan"
s.add_runtime_dependency "role_model"
end