hellohoe 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.
- data/History.txt +11 -0
- data/Manifest.txt +5 -0
- data/README.txt +11 -0
- data/Rakefile +9 -0
- data/lib/hellohoe.rb +7 -0
- metadata +100 -0
data/History.txt
ADDED
data/Manifest.txt
ADDED
data/README.txt
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
= hellohoe
|
|
2
|
+
|
|
3
|
+
* https://github.com/geraldb/hellohoe
|
|
4
|
+
|
|
5
|
+
== DESCRIPTION:
|
|
6
|
+
|
|
7
|
+
Sample on how to use Hoe Rake tasks to build, package and publish gems.
|
|
8
|
+
|
|
9
|
+
== LICENSE:
|
|
10
|
+
|
|
11
|
+
The hellohoe sources are dedicated to the public domain. Use it as you please with no restrictions whatsoever.
|
data/Rakefile
ADDED
data/lib/hellohoe.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: hellohoe
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
hash: 13
|
|
5
|
+
prerelease:
|
|
6
|
+
segments:
|
|
7
|
+
- 0
|
|
8
|
+
- 3
|
|
9
|
+
version: "0.3"
|
|
10
|
+
platform: ruby
|
|
11
|
+
authors:
|
|
12
|
+
- Gerald Bauer
|
|
13
|
+
autorequire:
|
|
14
|
+
bindir: bin
|
|
15
|
+
cert_chain: []
|
|
16
|
+
|
|
17
|
+
date: 2012-10-20 00:00:00 Z
|
|
18
|
+
dependencies:
|
|
19
|
+
- !ruby/object:Gem::Dependency
|
|
20
|
+
name: rdoc
|
|
21
|
+
prerelease: false
|
|
22
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
23
|
+
none: false
|
|
24
|
+
requirements:
|
|
25
|
+
- - ~>
|
|
26
|
+
- !ruby/object:Gem::Version
|
|
27
|
+
hash: 19
|
|
28
|
+
segments:
|
|
29
|
+
- 3
|
|
30
|
+
- 10
|
|
31
|
+
version: "3.10"
|
|
32
|
+
type: :development
|
|
33
|
+
version_requirements: *id001
|
|
34
|
+
- !ruby/object:Gem::Dependency
|
|
35
|
+
name: hoe
|
|
36
|
+
prerelease: false
|
|
37
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
|
38
|
+
none: false
|
|
39
|
+
requirements:
|
|
40
|
+
- - ~>
|
|
41
|
+
- !ruby/object:Gem::Version
|
|
42
|
+
hash: 7
|
|
43
|
+
segments:
|
|
44
|
+
- 3
|
|
45
|
+
- 0
|
|
46
|
+
version: "3.0"
|
|
47
|
+
type: :development
|
|
48
|
+
version_requirements: *id002
|
|
49
|
+
description: Sample on how to use Hoe Rake tasks to build, package and publish gems.
|
|
50
|
+
email: gerald.bauer@example.com
|
|
51
|
+
executables: []
|
|
52
|
+
|
|
53
|
+
extensions: []
|
|
54
|
+
|
|
55
|
+
extra_rdoc_files:
|
|
56
|
+
- History.txt
|
|
57
|
+
- Manifest.txt
|
|
58
|
+
- README.txt
|
|
59
|
+
files:
|
|
60
|
+
- History.txt
|
|
61
|
+
- Manifest.txt
|
|
62
|
+
- README.txt
|
|
63
|
+
- Rakefile
|
|
64
|
+
- lib/hellohoe.rb
|
|
65
|
+
homepage: https://github.com/geraldb/hellohoe
|
|
66
|
+
licenses: []
|
|
67
|
+
|
|
68
|
+
post_install_message:
|
|
69
|
+
rdoc_options:
|
|
70
|
+
- --main
|
|
71
|
+
- README.txt
|
|
72
|
+
require_paths:
|
|
73
|
+
- lib
|
|
74
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
75
|
+
none: false
|
|
76
|
+
requirements:
|
|
77
|
+
- - ">="
|
|
78
|
+
- !ruby/object:Gem::Version
|
|
79
|
+
hash: 3
|
|
80
|
+
segments:
|
|
81
|
+
- 0
|
|
82
|
+
version: "0"
|
|
83
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
84
|
+
none: false
|
|
85
|
+
requirements:
|
|
86
|
+
- - ">="
|
|
87
|
+
- !ruby/object:Gem::Version
|
|
88
|
+
hash: 3
|
|
89
|
+
segments:
|
|
90
|
+
- 0
|
|
91
|
+
version: "0"
|
|
92
|
+
requirements: []
|
|
93
|
+
|
|
94
|
+
rubyforge_project: hellohoe
|
|
95
|
+
rubygems_version: 1.8.24
|
|
96
|
+
signing_key:
|
|
97
|
+
specification_version: 3
|
|
98
|
+
summary: Sample on how to use Hoe Rake tasks to build, package and publish gems.
|
|
99
|
+
test_files: []
|
|
100
|
+
|