-
Notifications
You must be signed in to change notification settings - Fork 0
/
permit.gemspec
38 lines (32 loc) · 1.37 KB
/
permit.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
35
36
37
38
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "permit/version"
Gem::Specification.new do |s|
s.name = "permit"
s.version = Permit::VERSION
s.authors = ["Guilherme Cavalcanti"]
s.email = ["[email protected]"]
s.homepage = ""
s.summary = "Clients for the distributed authorization service Permit. It's a CanCan for WebServices."
s.description = "Clients for the distributed authorization service Permit. This project support both the creation and enforcment of policy in a distributed system."
s.rubyforge_project = "permit"
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 "rake"
s.add_development_dependency "rspec"
s.add_development_dependency "webmock"
s.add_runtime_dependency "faraday", "~> 0.8.4"
s.add_runtime_dependency "patron", "~> 0.4.18"
s.add_runtime_dependency "yajl-ruby"
s.add_runtime_dependency "amqp", "~> 0.9.1"
s.add_runtime_dependency "configurable"
s.add_runtime_dependency "logger"
if RUBY_VERSION < "1.9"
s.add_runtime_dependency "system_timer"
s.add_development_dependency "ruby-debug"
else
s.add_development_dependency "debugger"
end
end