forked from josedonizetti/ruby-duration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ruby-duration.gemspec
32 lines (26 loc) · 1.14 KB
/
ruby-duration.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
30
31
32
# -*- encoding: utf-8 -*-
require File.expand_path("../lib/duration/version", __FILE__)
Gem::Specification.new do |s|
s.name = "ruby-duration"
s.version = Duration::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Jose Peleteiro", "Bruno Azisaka Maciel"]
s.email = ["[email protected]", "[email protected]"]
s.homepage = "http://github.com/peleteiro/ruby-duration"
s.summary = "Duration type"
s.description = "Duration type"
s.required_rubygems_version = ">= 1.3.6"
s.rubyforge_project = "ruby-duration"
s.add_dependency "activesupport", ">= 3.0.0"
s.add_dependency "i18n", ">= 0"
s.add_development_dependency "bundler", ">= 1.0.0"
s.add_development_dependency "minitest", ">= 0"
s.add_development_dependency "yard", ">= 0"
s.add_development_dependency "rake", ">= 0"
s.add_development_dependency "simplecov", ">= 0.3.5"
s.add_development_dependency "bluecloth", ">= 0.3.5"
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
s.require_path = 'lib'
s.rdoc_options = ["--charset=UTF-8"]
end