rubu 0.0.1
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.
- checksums.yaml +7 -0
- data/CHANGELOG.rdoc +3 -0
- data/LICENSE +20 -0
- data/README.rdoc +63 -0
- data/doc/Array.html +422 -0
- data/doc/Rubu.html +201 -0
- data/doc/Rubu/Action.html +1002 -0
- data/doc/Rubu/AlwaysBuild.html +275 -0
- data/doc/Rubu/Build.html +1663 -0
- data/doc/Rubu/DateBuild.html +275 -0
- data/doc/Rubu/Flow.html +893 -0
- data/doc/Rubu/FlowRun.html +377 -0
- data/doc/Rubu/Fork.html +253 -0
- data/doc/Rubu/Info.html +264 -0
- data/doc/Rubu/Mark.html +1375 -0
- data/doc/Rubu/MarkBuild.html +275 -0
- data/doc/Rubu/Order.html +264 -0
- data/doc/Rubu/RubyCommand.html +315 -0
- data/doc/Rubu/ShellCommand.html +333 -0
- data/doc/Rubu/State.html +412 -0
- data/doc/Rubu/Var.html +264 -0
- data/doc/Rubu/Walk.html +184 -0
- data/doc/_index.html +313 -0
- data/doc/class_list.html +58 -0
- data/doc/css/common.css +1 -0
- data/doc/css/full_list.css +57 -0
- data/doc/css/style.css +339 -0
- data/doc/file.CHANGELOG.html +79 -0
- data/doc/file.README.html +133 -0
- data/doc/file_list.html +63 -0
- data/doc/frames.html +26 -0
- data/doc/index.html +133 -0
- data/doc/js/app.js +219 -0
- data/doc/js/full_list.js +181 -0
- data/doc/js/jquery.js +4 -0
- data/doc/method_list.html +549 -0
- data/doc/top-level-namespace.html +114 -0
- data/example/bin/gen_world +10 -0
- data/example/bin/rubu_example +178 -0
- data/example/runme +26 -0
- data/example/src/hello_world.c +11 -0
- data/lib/rubu.rb +790 -0
- data/lib/version.rb +6 -0
- metadata +92 -0
data/lib/version.rb
ADDED
metadata
ADDED
@@ -0,0 +1,92 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rubu
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Tero Isannainen
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2018-06-29 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: |-
|
14
|
+
Rubu (Re-Usable Build Utility) is a library for building
|
15
|
+
programs. Rubu is in practice a replacement for Make and Rake type
|
16
|
+
of tools. Rubu is targeted to provide means for creating flexible
|
17
|
+
build environments.
|
18
|
+
email: tero.isannainen@gmail.com
|
19
|
+
executables: []
|
20
|
+
extensions: []
|
21
|
+
extra_rdoc_files:
|
22
|
+
- README.rdoc
|
23
|
+
- CHANGELOG.rdoc
|
24
|
+
files:
|
25
|
+
- CHANGELOG.rdoc
|
26
|
+
- LICENSE
|
27
|
+
- README.rdoc
|
28
|
+
- doc/Array.html
|
29
|
+
- doc/Rubu.html
|
30
|
+
- doc/Rubu/Action.html
|
31
|
+
- doc/Rubu/AlwaysBuild.html
|
32
|
+
- doc/Rubu/Build.html
|
33
|
+
- doc/Rubu/DateBuild.html
|
34
|
+
- doc/Rubu/Flow.html
|
35
|
+
- doc/Rubu/FlowRun.html
|
36
|
+
- doc/Rubu/Fork.html
|
37
|
+
- doc/Rubu/Info.html
|
38
|
+
- doc/Rubu/Mark.html
|
39
|
+
- doc/Rubu/MarkBuild.html
|
40
|
+
- doc/Rubu/Order.html
|
41
|
+
- doc/Rubu/RubyCommand.html
|
42
|
+
- doc/Rubu/ShellCommand.html
|
43
|
+
- doc/Rubu/State.html
|
44
|
+
- doc/Rubu/Var.html
|
45
|
+
- doc/Rubu/Walk.html
|
46
|
+
- doc/_index.html
|
47
|
+
- doc/class_list.html
|
48
|
+
- doc/css/common.css
|
49
|
+
- doc/css/full_list.css
|
50
|
+
- doc/css/style.css
|
51
|
+
- doc/file.CHANGELOG.html
|
52
|
+
- doc/file.README.html
|
53
|
+
- doc/file_list.html
|
54
|
+
- doc/frames.html
|
55
|
+
- doc/index.html
|
56
|
+
- doc/js/app.js
|
57
|
+
- doc/js/full_list.js
|
58
|
+
- doc/js/jquery.js
|
59
|
+
- doc/method_list.html
|
60
|
+
- doc/top-level-namespace.html
|
61
|
+
- example/bin/gen_world
|
62
|
+
- example/bin/rubu_example
|
63
|
+
- example/runme
|
64
|
+
- example/src/hello_world.c
|
65
|
+
- lib/rubu.rb
|
66
|
+
- lib/version.rb
|
67
|
+
homepage:
|
68
|
+
licenses:
|
69
|
+
- Ruby
|
70
|
+
metadata: {}
|
71
|
+
post_install_message: Check README...
|
72
|
+
rdoc_options: []
|
73
|
+
require_paths:
|
74
|
+
- lib
|
75
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
76
|
+
requirements:
|
77
|
+
- - ">="
|
78
|
+
- !ruby/object:Gem::Version
|
79
|
+
version: 1.9.3
|
80
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
81
|
+
requirements:
|
82
|
+
- - ">="
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
version: '0'
|
85
|
+
requirements: []
|
86
|
+
rubyforge_project:
|
87
|
+
rubygems_version: 2.5.2.1
|
88
|
+
signing_key:
|
89
|
+
specification_version: 4
|
90
|
+
summary: Rubu is Re-Usable Build Utility library.
|
91
|
+
test_files: []
|
92
|
+
has_rdoc:
|