Created CHANGELOG
This commit is contained in:
parent
02e84c544c
commit
bf54ac9cad
2 changed files with 9 additions and 1 deletions
7
CHANGELOG
Normal file
7
CHANGELOG
Normal file
|
@ -0,0 +1,7 @@
|
|||
= Ruby Holidays Gem CHANGELOG
|
||||
|
||||
== 0.9.1
|
||||
* au.yaml was being included incorrectly in US holiday definitions. Thanks to Glenn Vanderburg (http://vanderburg.org/) for the fix.
|
||||
|
||||
== 0.9.0
|
||||
* Initial release.
|
|
@ -39,6 +39,7 @@ Rake::RDocTask.new(:rdoc) do |rdoc|
|
|||
rdoc.rdoc_files.include('data/SYNTAX')
|
||||
rdoc.rdoc_files.include('lib/holidays/MANIFEST')
|
||||
rdoc.rdoc_files.include('REFERENCES')
|
||||
rdoc.rdoc_files.include('CHANGELOG')
|
||||
rdoc.rdoc_files.include('LICENSE')
|
||||
rdoc.rdoc_files.include('lib/*.rb')
|
||||
end
|
||||
|
@ -56,7 +57,7 @@ spec = Gem::Specification.new do |s|
|
|||
s.files = FileList["{lib}/**/*", "{data}/**/*"].to_a
|
||||
s.test_files = FileList['test/defs/test*.rb'].exclude('test_helper.rb')
|
||||
s.has_rdoc = true
|
||||
s.extra_rdoc_files = ['README', 'data/SYNTAX', 'lib/holidays/MANIFEST', 'REFERENCES', 'LICENSE']
|
||||
s.extra_rdoc_files = ['README', 'data/SYNTAX', 'lib/holidays/MANIFEST', 'REFERENCES', 'CHANGELOG', 'LICENSE']
|
||||
s.rdoc_options << '--all' << '--inline-source' << '--line-numbers' << '--charset' << 'utf-8'
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue