hellohoe 0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (6) hide show
  1. data/History.txt +11 -0
  2. data/Manifest.txt +5 -0
  3. data/README.txt +11 -0
  4. data/Rakefile +9 -0
  5. data/lib/hellohoe.rb +7 -0
  6. metadata +100 -0
@@ -0,0 +1,11 @@
1
+ === 0.3 / 2012-10-20
2
+
3
+ * Upgrade to Hoe 3.x
4
+
5
+ === 0.2 / 2009-03-06
6
+
7
+ * Code Clean-up. Remove gem executable.
8
+
9
+ === 0.1 / 2009-03-05
10
+
11
+ * Everything is new. First release.
@@ -0,0 +1,5 @@
1
+ History.txt
2
+ Manifest.txt
3
+ README.txt
4
+ Rakefile
5
+ lib/hellohoe.rb
@@ -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.
@@ -0,0 +1,9 @@
1
+ require 'hoe'
2
+ require './lib/hellohoe.rb'
3
+
4
+ Hoe.spec 'hellohoe' do
5
+ self.version = HelloHoe::VERSION
6
+
7
+ self.author = 'Gerald Bauer'
8
+ self.email = 'gerald.bauer@example.com'
9
+ end
@@ -0,0 +1,7 @@
1
+ class HelloHoe
2
+
3
+ VERSION = '0.3'
4
+
5
+ # your code here
6
+
7
+ end
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
+