bones-extras 1.2.1 → 1.2.2

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.
data/Rakefile CHANGED
@@ -13,7 +13,7 @@ Bones {
13
13
  authors 'Tim Pease'
14
14
  email 'tim.pease@gmail.com'
15
15
  url 'http://github.com/TwP/bones-extras'
16
- version '1.2.1'
16
+ version '1.2.2'
17
17
  ignore_file '.gitignore'
18
18
 
19
19
  depend_on 'bones'
@@ -4,12 +4,15 @@ module Bones::Plugins::Rcov
4
4
  extend self
5
5
 
6
6
  def initialize_rcov
7
+ ::Bones.config {
8
+ rcov(:desc => 'Configuration settings for the Rcov code coverage tool.') {}
9
+ }
10
+
7
11
  require 'rcov'
8
12
  require 'rcov/rcovtask'
9
13
  have?(:rcov) { true }
10
14
 
11
15
  ::Bones.config {
12
- desc 'Configuration settings for the Rcov code coverage tool.'
13
16
  rcov {
14
17
  dir 'coverage', :desc => <<-__
15
18
  Code coverage metrics will be written to this directory.
@@ -4,12 +4,15 @@ module Bones::Plugins::Rubyforge
4
4
  extend self
5
5
 
6
6
  def initialize_rubyforge
7
+ ::Bones.config {
8
+ rubyforge(:desc => 'Configuration settings for RubyForge publishing.') {}
9
+ }
10
+
7
11
  require 'rubyforge'
8
12
  require 'rake/contrib/sshpublisher'
9
13
  have?(:rubyforge) { true }
10
14
 
11
15
  ::Bones.config {
12
- desc 'Configuration settings for RubyForge publishing.'
13
16
  rubyforge {
14
17
  name nil, :desc => <<-__
15
18
  The RubyForge project name where your code will be published. If not
@@ -4,11 +4,14 @@ module Bones::Plugins::Spec
4
4
  extend self
5
5
 
6
6
  def initialize_spec
7
+ ::Bones.config {
8
+ spec(:desc => 'Configuration settings for the RSpec test framework.') {}
9
+ }
10
+
7
11
  require 'spec/rake/spectask'
8
12
  have?(:spec) { true }
9
13
 
10
14
  ::Bones.config {
11
- desc 'Configuration settings for the RSpec test framework.'
12
15
  spec {
13
16
  files FileList['spec/**/*_spec.rb'], :desc => <<-__
14
17
  The list of spec files to run. This defaults to all the ruby fines
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bones-extras
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.1
4
+ version: 1.2.2
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-12-01 00:00:00 -07:00
12
+ date: 2009-12-07 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -20,7 +20,7 @@ dependencies:
20
20
  requirements:
21
21
  - - ">="
22
22
  - !ruby/object:Gem::Version
23
- version: 3.1.0
23
+ version: 3.1.2
24
24
  version:
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: bones
@@ -30,7 +30,7 @@ dependencies:
30
30
  requirements:
31
31
  - - ">="
32
32
  - !ruby/object:Gem::Version
33
- version: 3.1.0
33
+ version: 3.1.2
34
34
  version:
35
35
  description: |-
36
36
  The extras package for Mr Bones provides some handy Rake tasks for running