rocket 0.0.2 → 0.0.3

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/Rakefile +5 -39
  2. data/lib/rocket/version.rb +1 -1
  3. metadata +13 -13
data/Rakefile CHANGED
@@ -1,43 +1,9 @@
1
1
  # -*- ruby -*-
2
- $:.unshift(File.expand_path('../lib', __FILE__))
3
- $:.unshift(File.expand_path('../../rocket-core/lib', __FILE__))
4
- require 'rspec/core/rake_task'
5
- require 'rake/rdoctask'
2
+ require File.expand_path('../../load_paths', __FILE__)
6
3
  require 'rocket/version'
7
4
 
8
- RSpec::Core::RakeTask.new(:spec) do |t|
9
- t.pattern = 'spec/**/*_spec.rb'
10
- t.rspec_opts = %q[-I../rocket-core/lib -Ilib -c -b]
11
- end
5
+ $LIB_BASENAME = "rocket"
6
+ $LIB_FULLNAME = "#{$LIB_BASENAME}-#{Rocket.version}"
7
+ $LIB_TITLE = "Rocket #{Rocket.version}"
12
8
 
13
- RSpec::Core::RakeTask.new(:rcov) do |t|
14
- t.rcov = true
15
- t.rspec_opts = %q[-I../rocket-core/lib -Ilib -c -b]
16
- t.rcov_opts = %q[-I../rocket-core/lib -Ilib -T -x "spec"]
17
- end
18
-
19
- Rake::RDocTask.new do |rdoc|
20
- rdoc.title = "Rocket #{Rocket.version}"
21
- rdoc.rdoc_dir = 'rdoc'
22
- rdoc.rdoc_files.include('README*')
23
- rdoc.rdoc_files.include('lib/**/*.rb')
24
- end
25
-
26
- desc "Build current version as a rubygem"
27
- task :build do
28
- sh "gem build rocket.gemspec"
29
- sh "mkdir -p pkg"
30
- sh "mv rocket-*.gem pkg/"
31
- end
32
-
33
- desc "Relase current version to rubygems.org"
34
- task :release => :build do
35
- sh "gem push pkg/rocket-#{Rocket.version}.gem"
36
- end
37
-
38
- desc "Perform installation via rubygems"
39
- task :install => :build do
40
- sh "gem install pkg/rocket-#{Rocket.version}.gem"
41
- end
42
-
43
- task :default => :spec
9
+ load File.expand_path('../../Rakefile.common', __FILE__)
@@ -2,7 +2,7 @@ module Rocket
2
2
  module Version # :nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 0
5
- TINY = 2
5
+ TINY = 3
6
6
  STRING = [MAJOR, MINOR, TINY].join(".")
7
7
  end # Version
8
8
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rocket
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 25
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 2
10
- version: 0.0.2
9
+ - 3
10
+ version: 0.0.3
11
11
  platform: ruby
12
12
  authors:
13
13
  - Araneo Ltd.
@@ -16,7 +16,7 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2010-11-09 00:00:00 +01:00
19
+ date: 2010-11-29 00:00:00 +01:00
20
20
  default_executable:
21
21
  dependencies:
22
22
  - !ruby/object:Gem::Dependency
@@ -27,12 +27,12 @@ dependencies:
27
27
  requirements:
28
28
  - - "="
29
29
  - !ruby/object:Gem::Version
30
- hash: 27
30
+ hash: 25
31
31
  segments:
32
32
  - 0
33
33
  - 0
34
- - 2
35
- version: 0.0.2
34
+ - 3
35
+ version: 0.0.3
36
36
  type: :runtime
37
37
  version_requirements: *id001
38
38
  - !ruby/object:Gem::Dependency
@@ -43,12 +43,12 @@ dependencies:
43
43
  requirements:
44
44
  - - "="
45
45
  - !ruby/object:Gem::Version
46
- hash: 27
46
+ hash: 25
47
47
  segments:
48
48
  - 0
49
49
  - 0
50
- - 2
51
- version: 0.0.2
50
+ - 3
51
+ version: 0.0.3
52
52
  type: :runtime
53
53
  version_requirements: *id002
54
54
  - !ruby/object:Gem::Dependency
@@ -59,12 +59,12 @@ dependencies:
59
59
  requirements:
60
60
  - - "="
61
61
  - !ruby/object:Gem::Version
62
- hash: 27
62
+ hash: 25
63
63
  segments:
64
64
  - 0
65
65
  - 0
66
- - 2
67
- version: 0.0.2
66
+ - 3
67
+ version: 0.0.3
68
68
  type: :runtime
69
69
  version_requirements: *id003
70
70
  - !ruby/object:Gem::Dependency