forked from padrino/padrino-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpadrino-core.gemspec
25 lines (24 loc) · 1.03 KB
/
padrino-core.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
require File.expand_path("../lib/padrino-core/version.rb", __FILE__)
Gem::Specification.new do |s|
s.name = "padrino-core"
s.rubyforge_project = "padrino-core"
s.authors = ["Padrino Team", "Nathan Esquenazi", "Davide D'Agostino", "Arthur Chiu"]
s.email = "padrinorb@gmail.com"
s.summary = "The required Padrino core gem"
s.homepage = "http://www.padrinorb.com"
s.description = "The Padrino core gem required for use of this framework"
s.default_executable = "padrino"
s.executables = ["padrino"]
s.required_rubygems_version = ">= 1.3.6"
s.version = Padrino.version
s.date = Time.now.strftime("%Y-%m-%d")
s.extra_rdoc_files = Dir["*.rdoc"]
s.files = %w(.document .gitignore LICENSE README.rdoc Rakefile padrino-core.gemspec) + Dir.glob("{bin,lib,test}/**/*")
s.rdoc_options = ["--charset=UTF-8"]
s.require_path = "lib"
s.add_dependency("sinatra", "~> 1.2.0")
s.add_dependency("http_router", "~> 0.5.4")
s.add_dependency("thor", ">=0.14.3")
s.add_dependency("activesupport", ">= 3.0.0")
s.add_dependency("tzinfo")
end