-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanniversary.gemspec
More file actions
22 lines (19 loc) · 927 Bytes
/
anniversary.gemspec
File metadata and controls
22 lines (19 loc) · 927 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "anniversary/version"
Gem::Specification.new do |s|
s.name = "anniversary"
s.version = Anniversary::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Rick Denatale"]
s.email = ["rick.denatale@gmail.com", "rickd@scimedsolutions.com"]
s.homepage = ""
s.summary = %q{Add method to Ruby's Date to get [years, months, days] between two dates}
s.description = %q{Adds the method Date#years_months_days_since which returns the number of days, months and years since another date}
s.rubyforge_project = "anniversary"
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.add_development_dependency "rspec", "~>2"
s.require_paths = ["lib"]
end