forked from padrino/padrino-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpadrino-performance.gemspec
25 lines (22 loc) · 1.03 KB
/
padrino-performance.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
#!/usr/bin/env gem build
# encoding: utf-8
require File.expand_path("../lib/padrino-performance/version.rb", __FILE__)
Gem::Specification.new do |s|
s.name = "padrino-performance"
s.rubyforge_project = "padrino-performance"
s.authors = ["Padrino Team", "Nathan Esquenazi", "Davide D'Agostino", "Arthur Chiu", "Florian Gilcher", "Darío Javier Cravero", "Igor Bochkariov"]
s.email = "padrinorb@gmail.com"
s.summary = "A gem for finding performance problems in Padrino"
s.homepage = "http://www.padrinorb.com"
s.description = "A gem for finding performance problems in Padrino by tracking loads and memory consumption."
s.required_rubygems_version = ">= 1.3.6"
s.version = Padrino::Performance.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 = ["padrino-performance"]
s.require_paths = ["lib"]
s.rdoc_options = ["--charset=UTF-8"]
end