Split History file by change type
This commit is contained in:
parent
beee36c291
commit
ba50c1f1f4
50
History.txt
50
History.txt
|
@ -1,26 +1,34 @@
|
||||||
== 0.2.0 / 2008-04-04
|
== 0.2.0 / 2008-04-04
|
||||||
|
|
||||||
* Fix incorrect serializing of collection inputs, i.e. name contains [] (Patch from Kamal Fariz Mahyuddi)
|
* 4 Major enhancements
|
||||||
* Added reloads method to reload the page (Patch from Kamal Fariz Mahyuddi)
|
|
||||||
* Prevent making a request if clicking on local anchor link (Patch from Kamal Fariz Mahyuddi)
|
* Add save_and_open_page to aid in debugging
|
||||||
* Serialize empty text field values just like browsers (Patch from Kamal Fariz Mahyuddi)
|
* Add radio button support via #chooses method
|
||||||
* Added clicks_link_within(selector, link_text), allowing restricting link search
|
* Add basic support for Rails-generated JavaScript link tags
|
||||||
to within a given css selector (Path from Luke Melia)
|
* Add support for checkboxes (Patches from Kyle Hargraves and Jarkko Laine)
|
||||||
* Change clicks_link to find the shortest matching link (Patch from Luke Melia)
|
* Add support for textarea fields (Patch from Sacha Schlegel)
|
||||||
* Quick fix to avoid @dom not initialized warnings (Patch from Kamal Fariz Mahyuddi)
|
|
||||||
* Add save_and_open_page to aid in debugging
|
* 8 Minor enhancements
|
||||||
* Add radio button support via #chooses method
|
|
||||||
* Docfix: bad reference to #select method in README (Patch from Luke Melia)
|
* Added reloads method to reload the page (Patch from Kamal Fariz Mahyuddi)
|
||||||
* Allow specifying the input name/label when doing a select (Patch from David Chelimsky)
|
* Prevent making a request if clicking on local anchor link (Patch from Kamal Fariz Mahyuddi)
|
||||||
* Raise a specific exception if the developer tries to manipulate form elements before loading a page (Patch from James Deville)
|
* Added clicks_link_within(selector, link_text), allowing restricting link search
|
||||||
* Add basic support for Rails-generated JavaScript link tags
|
to within a given css selector (Path from Luke Melia)
|
||||||
* Ensure Rails-style checkboxes work properly (checkboxes followed by a hidden input with the same name)
|
* Allow specifying the input name/label when doing a select (Patch from David Chelimsky)
|
||||||
* Add support for alternate POST, PUT and DELETE link clicking (Patch from Kyle Hargraves)
|
* Raise a specific exception if the developer tries to manipulate form elements before loading a page (Patch from James Deville)
|
||||||
* Add support for checkboxes (Patches from Kyle Hargraves and Jarkko Laine)
|
* Add support for alternate POST, PUT and DELETE link clicking (Patch from Kyle Hargraves)
|
||||||
* Improve matching for labels in potentially ambiguous cases
|
* Change clicks_link to find the shortest matching link (Patch from Luke Melia)
|
||||||
* Add support for textarea fields (Patch from Sacha Schlegel)
|
* Improve matching for labels in potentially ambiguous cases
|
||||||
* Fix Edge Rails (a.k.a. 2.0 RC) compatibility (Patch from David Chelimsky)
|
|
||||||
* Support param hashes nested more than one level (Patch from David Chelimsky)
|
* 7 Bug fixes
|
||||||
|
|
||||||
|
* Fix incorrect serializing of collection inputs, i.e. name contains [] (Patch from Kamal Fariz Mahyuddi)
|
||||||
|
* Serialize empty text field values just like browsers (Patch from Kamal Fariz Mahyuddi)
|
||||||
|
* Quick fix to avoid @dom not initialized warnings (Patch from Kamal Fariz Mahyuddi)
|
||||||
|
* Docfix: bad reference to #select method in README (Patch from Luke Melia)
|
||||||
|
* Ensure Rails-style checkboxes work properly (checkboxes followed by a hidden input with the same name)
|
||||||
|
* Fix Edge Rails (a.k.a. 2.0 RC) compatibility (Patch from David Chelimsky)
|
||||||
|
* Support param hashes nested more than one level (Patch from David Chelimsky)
|
||||||
|
|
||||||
== 0.1.0 / 2007-11-28
|
== 0.1.0 / 2007-11-28
|
||||||
|
|
||||||
|
|
11
Rakefile
11
Rakefile
|
@ -13,7 +13,7 @@ Hoe.new('webrat', Webrat::VERSION) do |p|
|
||||||
|
|
||||||
p.description = p.paragraphs_of('README.txt', 4..6).join("\n\n")
|
p.description = p.paragraphs_of('README.txt', 4..6).join("\n\n")
|
||||||
p.url = p.paragraphs_of('README.txt', 1).first.split("\n").first.strip
|
p.url = p.paragraphs_of('README.txt', 1).first.split("\n").first.strip
|
||||||
p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")
|
p.changes = p.paragraphs_of('History.txt', 0..3).join("\n\n")
|
||||||
|
|
||||||
p.extra_deps << ["hpricot", ">= 0.6"]
|
p.extra_deps << ["hpricot", ">= 0.6"]
|
||||||
|
|
||||||
|
@ -24,11 +24,4 @@ end
|
||||||
desc "Upload rdoc to brynary.com"
|
desc "Upload rdoc to brynary.com"
|
||||||
task :publish_rdoc => :docs do
|
task :publish_rdoc => :docs do
|
||||||
sh "scp -r doc/ brynary.com:/apps/uploads/webrat"
|
sh "scp -r doc/ brynary.com:/apps/uploads/webrat"
|
||||||
end
|
end
|
||||||
|
|
||||||
# desc 'Generate RDoc documentation for the Webrat plugin.'
|
|
||||||
# Rake::RDocTask.new(:rdoc) do |rdoc|
|
|
||||||
# rdoc.options << '--line-numbers' << '--inline-source'
|
|
||||||
# rdoc.rdoc_files.include('README')
|
|
||||||
# rdoc.rdoc_files.include('lib/**/*.rb')
|
|
||||||
# end
|
|
Loading…
Reference in New Issue