forked from chef/win32-dir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGES
53 lines (44 loc) · 1.82 KB
/
CHANGES
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
== 0.3.7 - 18-Jul-2010
* Modified Dir.glob and Dir[] to handle backslashes in path names.
* Added tests for the modified Dir.glob and Dir[] behavior.
* Removed the old non-gem install Rake task.
== 0.3.6 - 6-Feb-2010
* Bug fixes for Ruby 1.9.x. Thanks go to Kendall Gifford for the spot and
the patch.
* Minor refactoring of the Dir.create_junction method. This fixed a bug for
Ruby 1.9.x, but was also a little cleaner in general.
* Some Rakefile task and gemspec updates.
== 0.3.5 - 6-Aug-2009
* Changed the license to Artistic 2.0.
* Updated the gemspec, including the addition of a license attribute and
test-unit as a development dependency.
== 0.3.4 - 5-May-2009
* Redefined the Dir.getwd (and the Dir.pwd alias) to always return a
normalized path.
* Some gemspec updates.
== 0.3.3 - 30-Mar-2009
* Virtual folders like Dir::CONTROL, which were previously almost always nil,
are now set to their display name.
* Fixed a bug in the create_junction method.
* Added an 'example' rake task to run the example code.
* Renamed the example program from dir_test.rb to dir_example.rb to prevent
any potential confusion that it's a genuine test file.
== 0.3.2 - 25-Jul-2007
* Added a Rakefile with tasks for testing and installation.
* Removed the install.rb file (the Rakefile handles installation).
* Minor updates the README, MANIFEST, and test file.
== 0.3.1 - 16-Oct-2006
* Added the Dir.empty? method.
* Changed the Dir.reparse_dir? method to Dir.junction? (but kept an alias
for backwards compatibility).
* Added rdoc for Dir.junction? (oops).
* Some test tweaks and additions.
== 0.3.0 - 28-May-2006
* Now pure Ruby.
* Now has a gem.
* Added a VERSION constant.
== 0.2.0 - 27-Jun-2005
* Added the Dir.create_junction and Dir.reparse_dir? methods.
* Added corresponding tests and documentation.
== 0.1.0 - 25-Feb-2005
* Initial release