-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpadrino-decorator.gemspec
28 lines (24 loc) · 1.07 KB
/
padrino-decorator.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
#!/usr/bin/env gem build
# encoding: utf-8
require File.expand_path('../lib/padrino-decorator/version', __FILE__)
Gem::Specification.new do |s|
s.name = "padrino-decorator"
s.rubyforge_project = "padrino-decorator"
s.authors = ["Takeshi Yabe"]
s.email = ["[email protected]"]
s.summary = "View models for padrino"
s.homepage = "https://github.com/tyabe/padrino-decorator#readme"
s.description = "Object-Oriented layer of presentation logic to your Padrino apps."
s.required_rubygems_version = ">= 1.3.6"
s.version = Padrino::Decorator.version
s.date = Time.now.strftime("%Y-%m-%d")
s.extra_rdoc_files = Dir["*.rdoc"]
s.files = `git ls-files`.split($\)
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.executables = s.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.rdoc_options = ["--charset=UTF-8"]
s.add_dependency "padrino-core" , ">= 0.12.3"
s.add_dependency "padrino-gen" , ">= 0.12.3"
s.add_dependency "padrino-helpers" , ">= 0.12.3"
end