pipa-xmlnuts 0.2.2 → 0.2.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.
- data/README.rdoc +6 -0
- data/Rakefile +26 -0
- metadata +3 -2
data/README.rdoc
CHANGED
@@ -15,6 +15,12 @@ Released under the MIT license.
|
|
15
15
|
Please see an example below.
|
16
16
|
See also +XmlNuts::Nut+, +XmlNuts::Nut::ClassMethods+
|
17
17
|
|
18
|
+
== TODO
|
19
|
+
- Inheritance
|
20
|
+
- Mixins
|
21
|
+
- More mappings?
|
22
|
+
- More types?
|
23
|
+
|
18
24
|
== Reporting bugs
|
19
25
|
Please file bugs and feature requests at http://pipa.lighthouseapp.com/projects/21756-xmlnuts
|
20
26
|
|
data/Rakefile
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
$KCODE = 'u'
|
2
|
+
|
3
|
+
require 'rubygems'
|
4
|
+
require 'rake'
|
5
|
+
require 'rake/clean'
|
6
|
+
require 'rake/gempackagetask'
|
7
|
+
require 'rake/rdoctask'
|
8
|
+
require 'rake/testtask'
|
9
|
+
|
10
|
+
Rake::GemPackageTask.new(Gem::Specification.load('xmlnuts.gemspec')) do |p|
|
11
|
+
p.need_tar = true
|
12
|
+
p.need_zip = true
|
13
|
+
end
|
14
|
+
|
15
|
+
Rake::RDocTask.new do |rdoc|
|
16
|
+
files =['README.rdoc', 'MIT-LICENSE', 'lib/**/*.rb']
|
17
|
+
rdoc.rdoc_files.add(files)
|
18
|
+
rdoc.main = "README.rdoc" # page to start on
|
19
|
+
rdoc.title = "XmlNuts Documentation"
|
20
|
+
rdoc.rdoc_dir = 'doc/rdoc' # rdoc output folder
|
21
|
+
rdoc.options << '--line-numbers' << '--inline-source'
|
22
|
+
end
|
23
|
+
|
24
|
+
Rake::TestTask.new do |t|
|
25
|
+
t.test_files = FileList['test/**/*.rb']
|
26
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pipa-xmlnuts
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Igor Gunko
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-01-
|
12
|
+
date: 2009-01-06 00:00:00 -08:00
|
13
13
|
default_executable:
|
14
14
|
dependencies: []
|
15
15
|
|
@@ -25,6 +25,7 @@ extra_rdoc_files:
|
|
25
25
|
files:
|
26
26
|
- README.rdoc
|
27
27
|
- MIT-LICENSE
|
28
|
+
- Rakefile
|
28
29
|
- lib/xmlnuts.rb
|
29
30
|
- lib/pipa-xmlnuts.rb
|
30
31
|
- lib/xmlnuts/nuts.rb
|