Added New York Stock Exchange holidays (thank you Alan Larkin).
Fixed rakefile to force lower case definition file names.
This commit is contained in:
parent
206f610cc9
commit
429abc9a6c
|
@ -1,5 +1,9 @@
|
||||||
= Ruby Holidays Gem CHANGELOG
|
= Ruby Holidays Gem CHANGELOG
|
||||||
|
|
||||||
|
== 0.9.3
|
||||||
|
* Added New York Stock Exchange holidays (thank you Alan Larkin).
|
||||||
|
* Fixed rakefile to force lower case definition file names.
|
||||||
|
|
||||||
== 0.9.2
|
== 0.9.2
|
||||||
* Included rakefile in Gem (thank you James Herdman).
|
* Included rakefile in Gem (thank you James Herdman).
|
||||||
|
|
||||||
|
|
|
@ -13,6 +13,7 @@ defs:
|
||||||
IT: ['it.yaml']
|
IT: ['it.yaml']
|
||||||
MX: ['mx.yaml', 'north_america_informal.yaml']
|
MX: ['mx.yaml', 'north_america_informal.yaml']
|
||||||
NL: ['nl.yaml']
|
NL: ['nl.yaml']
|
||||||
|
NYSE: ['nyse.yaml']
|
||||||
PT: ['se.yaml']
|
PT: ['se.yaml']
|
||||||
US: ['us.yaml', 'north_america_informal.yaml']
|
US: ['us.yaml', 'north_america_informal.yaml']
|
||||||
United_Nations: ['united_nations.yaml']
|
United_Nations: ['united_nations.yaml']
|
||||||
|
|
|
@ -15,6 +15,7 @@ The following definition files are included in this installation:
|
||||||
* holidays/mx
|
* holidays/mx
|
||||||
* holidays/nl
|
* holidays/nl
|
||||||
* holidays/north_america
|
* holidays/north_america
|
||||||
|
* holidays/nyse
|
||||||
* holidays/pt
|
* holidays/pt
|
||||||
* holidays/scandinavia
|
* holidays/scandinavia
|
||||||
* holidays/se
|
* holidays/se
|
||||||
|
|
|
@ -85,11 +85,11 @@ namespace :defs do
|
||||||
files.uniq!
|
files.uniq!
|
||||||
|
|
||||||
module_src, test_src = parse_holiday_defs(region, files)
|
module_src, test_src = parse_holiday_defs(region, files)
|
||||||
File.open("lib/holidays/#{region.to_s}.rb","w") do |file|
|
File.open("lib/holidays/#{region.downcase.to_s}.rb","w") do |file|
|
||||||
file.puts module_src
|
file.puts module_src
|
||||||
end
|
end
|
||||||
unless test_src.empty?
|
unless test_src.empty?
|
||||||
File.open("test/defs/test_defs_#{region.to_s}.rb","w") do |file|
|
File.open("test/defs/test_defs_#{region.downcase.to_s}.rb","w") do |file|
|
||||||
file.puts test_src
|
file.puts test_src
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue