TwP-bones 2.5.0 → 2.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. data/History.txt +5 -0
  2. data/lib/bones.rb +2 -2
  3. metadata +2 -2
@@ -1,3 +1,8 @@
1
+ == 2.5.1 / 2009-05-12
2
+
3
+ * 1 bug fix
4
+ - name conflict with the jruby "import" method and the rake "import" method
5
+
1
6
  == 2.5.0 / 2009-04-05
2
7
 
3
8
  * 1 minor enhancement
@@ -4,7 +4,7 @@ require 'rbconfig'
4
4
  module Bones
5
5
 
6
6
  # :stopdoc:
7
- VERSION = '2.5.0'
7
+ VERSION = '2.5.1'
8
8
  PATH = File.expand_path(File.join(File.dirname(__FILE__), '..'))
9
9
  HOME = File.expand_path(ENV['HOME'] || ENV['USERPROFILE'])
10
10
  DEV_NULL = File.exist?('/dev/null') ? '/dev/null' : 'NUL:'
@@ -54,7 +54,7 @@ module Bones
54
54
  load bones_setup
55
55
 
56
56
  rakefiles = Dir.glob(File.join(Dir.pwd, %w[tasks *.rake])).sort
57
- import(*rakefiles) unless rakefiles.empty?
57
+ rakefiles.each {|fn| Rake.application.add_import(fn)}
58
58
  end
59
59
 
60
60
  # TODO: fix file lists for Test::Unit and RSpec
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: TwP-bones
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.5.0
4
+ version: 2.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tim Pease
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-04-05 00:00:00 -07:00
12
+ date: 2009-05-12 00:00:00 -07:00
13
13
  default_executable: bones
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency