kinda-composable 0.0.7 → 0.0.8

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/README.rdoc +1 -4
  2. data/Rakefile +20 -0
  3. metadata +2 -1
data/README.rdoc CHANGED
@@ -1,6 +1,3 @@
1
- Author:: Manuel Vila (mailto:mvila@3base.com)
2
- License:: Don't know yet
3
-
4
1
  = Composable
5
2
 
6
3
  Simple implementation of the composite design pattern.
@@ -11,4 +8,4 @@ Simple implementation of the composite design pattern.
11
8
 
12
9
  == Usage
13
10
 
14
- Still very alpha so documentation will come later.
11
+ Still very alpha, documentation will come later.
data/Rakefile ADDED
@@ -0,0 +1,20 @@
1
+ require "rake/testtask"
2
+
3
+ begin
4
+ require "hanna/rdoctask"
5
+ rescue LoadError
6
+ require "rake/rdoctask"
7
+ end
8
+
9
+ task :default => [:test]
10
+
11
+ Rake::TestTask.new do |t|
12
+ t.test_files = Dir["test/*_test.rb"]
13
+ end
14
+
15
+ Rake::RDocTask.new do |t|
16
+ t.title = "Composable Documentation"
17
+ t.main = "README.rdoc"
18
+ t.rdoc_files.include("README.rdoc", "lib/**/*.rb")
19
+ t.rdoc_dir = "doc"
20
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kinda-composable
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Manuel Vila
@@ -31,6 +31,7 @@ extensions: []
31
31
  extra_rdoc_files:
32
32
  - README.rdoc
33
33
  files:
34
+ - Rakefile
34
35
  - lib/composable.rb
35
36
  - lib/kinda-composable.rb
36
37
  - README.rdoc