bee 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -28,9 +28,15 @@
28
28
  - Documentation system.
29
29
 
30
30
  - release: 0.1.0
31
- description: Distribute bee as a gem.
31
+ description: First Gem package.
32
32
  new:
33
33
  - Distribution as a Gem package.
34
34
  - Template generation (-t option).
35
35
  fixed:
36
36
  - Directory in distribution archive postfixed with version.
37
+
38
+ - release: 0.1.1
39
+ description: Bug fix release.
40
+ fixed:
41
+ - Unit test suite.
42
+ - Rdoc in ZIP archive.
data/lib/bee.rb CHANGED
@@ -19,7 +19,7 @@ module Bee
19
19
  require 'getoptlong'
20
20
 
21
21
  # Copyright notice.
22
- COPYRIGHT = 'Bee version 0.1.0 (C) Michel Casabianca - 2006'
22
+ COPYRIGHT = 'Bee version 0.1.1 (C) Michel Casabianca - 2006'
23
23
  # Command line help.
24
24
  HELP = 'Usage: bee [options] [targets]
25
25
  -h Print help about usage and exit.
@@ -26,7 +26,7 @@ module Bee
26
26
  module Doc
27
27
 
28
28
  # Copyright notice.
29
- COPYRIGHT = 'BeeDoc version 0.1.0 (C) Michel Casabianca - 2006'
29
+ COPYRIGHT = 'BeeDoc version 0.1.1 (C) Michel Casabianca - 2006'
30
30
  # Console help.
31
31
  HELP = 'beedoc [-h] [-o dir] menu
32
32
  -h Print help about usage and exit.
@@ -15,8 +15,8 @@
15
15
  # limitations under the License.
16
16
 
17
17
  require 'test/unit'
18
- $:.unshift(File.join(File.dirname(__FILE__), '..', 'bin'))
19
- load 'bee'
18
+ $:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
19
+ require 'bee'
20
20
 
21
21
  class TestBeeConsoleFormatter < Test::Unit::TestCase
22
22
 
@@ -18,10 +18,11 @@
18
18
  # in a single test suite.
19
19
 
20
20
  require 'find'
21
+ $:.unshift(File.dirname(__FILE__))
21
22
 
22
- Find.find('.') do |path|
23
+ Find.find(File.dirname(__FILE__)) do |path|
23
24
  file = File.split(path)[1]
24
25
  if File.file?(path) and file =~ /^tc_.+\.rb$/
25
- require path[0, path.rindex('.')]
26
+ load file
26
27
  end
27
28
  end
metadata CHANGED
@@ -3,7 +3,7 @@ rubygems_version: 0.9.0
3
3
  specification_version: 1
4
4
  name: bee
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.1.0
6
+ version: 0.1.1
7
7
  date: 2006-11-02 00:00:00 +01:00
8
8
  summary: Build tool
9
9
  require_paths:
@@ -37,7 +37,6 @@ files:
37
37
  - doc/html/documentation.html
38
38
  - doc/html/quickstart.html
39
39
  - doc/png/style.png
40
- - doc/yml/#releases.yml#
41
40
  - doc/yml/menu.yml
42
41
  - doc/yml/releases.yml
43
42
  - doc/yml/todo.yml
@@ -1,36 +0,0 @@
1
- # Copyright 2006 Michel Casabianca <casa@sweetohm.net>
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
6
- #
7
- # http://www.apache.org/licenses/LICENSE-2.0
8
- #
9
- # Unless required by applicable law or agreed to in writing, software
10
- # distributed under the License is distributed on an "AS IS" BASIS,
11
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
- # See the License for the specific language governing permissions and
13
- # limitations under the License.
14
-
15
- - description: >
16
- Here is the list of Bee release with new features and links to download.
17
- download: http://rubyforge.org/frs/?group_id=2479
18
-
19
- - release: alpha
20
- description: A simple night hack.
21
-
22
- - release: beta-1
23
- description: First public release.
24
- new:
25
- - Run Ruby scripts.
26
- - Load context on startup.
27
- - Added checks on build files syntax.
28
- - Documentation system.
29
-
30
- - release: 0.1.0
31
- description: First Gem package.
32
- new:
33
- - Distribution as a Gem package.
34
- - Template generation (-t option).
35
- fixed:
36
- - Directory in distribution archive postfixed with version.