forked from padrino/padrino-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpadrino-support.gemspec
27 lines (23 loc) · 1 KB
/
padrino-support.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
#!/usr/bin/env gem build
# encoding: utf-8
require File.expand_path("../../padrino-core/lib/padrino-core/version.rb", __FILE__)
Gem::Specification.new do |s|
s.name = "padrino-support"
s.rubyforge_project = "padrino-support"
s.authors = ["Padrino Team", "Nathan Esquenazi", "Davide D'Agostino", "Arthur Chiu", "Igor Bochkariov"]
s.email = "padrinorb@gmail.com"
s.summary = "Support for padrino"
s.homepage = "http://www.padrinorb.com"
s.description = "A number of support methods and extensions for Padrino framework"
s.required_rubygems_version = ">= 1.3.6"
s.version = Padrino.version
s.date = Time.now.strftime("%Y-%m-%d")
s.license = "MIT"
s.extra_rdoc_files = Dir["*.rdoc"]
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.rdoc_options = ["--charset=UTF-8"]
s.add_dependency("activesupport", ">= 3.1")
end