forked from bokmann/business_time
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbusiness_time.gemspec
More file actions
23 lines (19 loc) · 876 Bytes
/
business_time.gemspec
File metadata and controls
23 lines (19 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
$LOAD_PATH.push File.expand_path("lib", __dir__)
require "business_time/version"
Gem::Specification.new do |s|
s.name = "business_time"
s.version = BusinessTime::VERSION
s.summary = %Q{Support for doing time math in business hours and days}
s.description = %Q{Have you ever wanted to do things like "6.business_days.from_now" and have weekends and holidays taken into account? Now you can.}
s.homepage = "https://github.com/bokmann/business_time"
s.authors = ["bokmann"]
s.email = "dbock@javaguy.org"
s.license = "MIT"
s.files = `git ls-files -- {lib,rails_generators,LICENSE,README.rdoc}`.split("\n")
s.add_dependency("activesupport", ">= 3.2.0")
s.add_dependency("tzinfo")
s.add_development_dependency "rake"
s.add_development_dependency "rdoc"
s.add_development_dependency "minitest"
s.add_development_dependency "minitest-reporters"
end