-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsinatra-authorize.gemspec
29 lines (24 loc) · 1.04 KB
/
sinatra-authorize.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
# -*- encoding: utf-8 -*-
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
require 'sinatra-authorize/version'
Gem::Specification.new do |s|
s.name = "sinatra-authorize"
s.version = Sinatra::Authorize::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Ole Petter Bang"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/gnab/sinatra-authorize"
s.summary = "Smooth authentication-agnostic rule-based authorization " +
"extension for Sinatra"
s.description = s.summary
s.required_rubygems_version = ">= 1.3.6"
s.rubyforge_project = "sinatra-authorize"
s.add_development_dependency "bundler", ">= 1.0.0.rc.5"
s.add_development_dependency "rake", ">= 0.8"
s.add_development_dependency "rack-test", ">= 0.5.7"
s.add_development_dependency "rspec", ">= 2.4"
s.add_runtime_dependency "sinatra", ">= 1.2"
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").select{|f| f =~ /^bin/}
s.require_path = 'lib'
end