-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathholiday_calendar.gemspec
33 lines (30 loc) · 1.41 KB
/
holiday_calendar.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
33
require File.dirname(__FILE__) + '/lib/holiday_calendar_version'
Gem::Specification.new do |s|
s.name = %q{holiday_calendar}
s.version = HOLIDAY_CALENDAR_VERSION
s.authors = ["Stephen Richards"]
s.email = ["[email protected]"]
s.date = %q{2009-09-01}
s.summary = %q{Dynamic and Configurable International Public Holiday Calendar}
s.description = %q{Helper class for determining which days are public holidays in different countries, calcluating the working days between two dates, etc}
s.files = `git ls-files -- {config,lib}/*`.split("\n")
s.test_files = `git ls-files -- test/*`.split("\n")
s.has_rdoc = true
s.homepage = 'https://github.com/stephenrichards/holiday_calendar'
s.extra_rdoc_files = ['config/uk_en.yaml',
'config/fr.yaml',
'config/us.yaml']
s.rdoc_options << "--main" << "README" <<
"--inline-source" <<
"--charset" << "UTF-8" <<
"--exclude" << "lib/modified_weekday.rb" <<
"--exclude" << "lib/public_holiday.rb" <<
"--exclude" << "test" <<
"--title" << "Holiday Calendar"
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.0}
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 2
end
end