bones 3.5.3 → 3.5.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,9 @@
1
- == 3.5.3 / 2010-11-23
1
+ == 3.5.4 / 2010-11-26
2
+
3
+ 1 bug fix
4
+ - gem prereqs dependency now happens earlier for the package task
5
+
6
+ == 3.5.3 / 2010-11-26
2
7
 
3
8
  1 minor change
4
9
  - Smart file searching
@@ -38,7 +38,7 @@ class Bones::GemPackageTask < Rake::PackageTask
38
38
  def define
39
39
  super
40
40
  task :prereqs
41
- task :package => ['gem:prereqs', "#{package_dir_path}/#{gem_file}"]
41
+ task :package => ["#{package_dir_path}/#{gem_file}"]
42
42
 
43
43
  file "#{package_dir_path}/#{gem_file}" => [package_dir_path] + package_files do
44
44
  when_writing("Creating GEM") {
@@ -51,7 +51,7 @@ class Bones::GemPackageTask < Rake::PackageTask
51
51
  }
52
52
  end
53
53
 
54
- file package_dir_path do
54
+ file package_dir_path => 'gem:prereqs' do
55
55
  mkdir_p package_dir rescue nil
56
56
  end
57
57
  end
@@ -1 +1 @@
1
- 3.5.3
1
+ 3.5.4
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bones
3
3
  version: !ruby/object:Gem::Version
4
- hash: 21
4
+ hash: 27
5
5
  prerelease: false
6
6
  segments:
7
7
  - 3
8
8
  - 5
9
- - 3
10
- version: 3.5.3
9
+ - 4
10
+ version: 3.5.4
11
11
  platform: ruby
12
12
  authors:
13
13
  - Tim Pease