pluto 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.
@@ -0,0 +1,3 @@
1
+ ### 0.0.1 / 2012-07-14
2
+
3
+ * Everything is new. First release
@@ -0,0 +1,5 @@
1
+ History.markdown
2
+ Manifest.txt
3
+ README.markdown
4
+ Rakefile
5
+ lib/pluto.rb
@@ -0,0 +1,21 @@
1
+ # pluto
2
+
3
+ Another Planet Generator in Ruby - Lets You Build Web Pages
4
+ from Published Web Feeds
5
+
6
+ ## Usage
7
+
8
+ TBD
9
+
10
+
11
+ ## Install
12
+
13
+ Just install the gem:
14
+
15
+ $ gem install pluto
16
+
17
+
18
+ ## License
19
+
20
+ The `pluto` scripts are dedicated to the public domain.
21
+ Use it as you please with no restrictions whatsoever.
@@ -0,0 +1,20 @@
1
+ require 'hoe'
2
+ require './lib/pluto.rb'
3
+
4
+ Hoe.spec 'pluto' do
5
+
6
+ self.version = Pluto::VERSION
7
+
8
+ self.summary = 'pluto - Another Planet Generator'
9
+ self.description = 'pluto - Another Planet Generator (Lets You Build Web Pages from Published Web Feeds)'
10
+
11
+ self.urls = ['http://geraldb.github.com/pluto']
12
+
13
+ self.author = 'Gerald Bauer'
14
+ self.email = 'webslideshow@googlegroups.com'
15
+
16
+ # switch extension to .markdown for gihub formatting
17
+ self.readme_file = 'README.markdown'
18
+ self.history_file = 'History.markdown'
19
+
20
+ end
@@ -0,0 +1,3 @@
1
+ module Pluto
2
+ VERSION = '0.0.1'
3
+ end
metadata ADDED
@@ -0,0 +1,99 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: pluto
3
+ version: !ruby/object:Gem::Version
4
+ hash: 29
5
+ prerelease:
6
+ segments:
7
+ - 0
8
+ - 0
9
+ - 1
10
+ version: 0.0.1
11
+ platform: ruby
12
+ authors:
13
+ - Gerald Bauer
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2012-07-14 00:00:00 Z
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
21
+ name: rdoc
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ none: false
25
+ requirements:
26
+ - - ~>
27
+ - !ruby/object:Gem::Version
28
+ hash: 19
29
+ segments:
30
+ - 3
31
+ - 10
32
+ version: "3.10"
33
+ type: :development
34
+ version_requirements: *id001
35
+ - !ruby/object:Gem::Dependency
36
+ name: hoe
37
+ prerelease: false
38
+ requirement: &id002 !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ~>
42
+ - !ruby/object:Gem::Version
43
+ hash: 7
44
+ segments:
45
+ - 3
46
+ - 0
47
+ version: "3.0"
48
+ type: :development
49
+ version_requirements: *id002
50
+ description: pluto - Another Planet Generator (Lets You Build Web Pages from Published Web Feeds)
51
+ email: webslideshow@googlegroups.com
52
+ executables: []
53
+
54
+ extensions: []
55
+
56
+ extra_rdoc_files:
57
+ - Manifest.txt
58
+ files:
59
+ - History.markdown
60
+ - Manifest.txt
61
+ - README.markdown
62
+ - Rakefile
63
+ - lib/pluto.rb
64
+ homepage: http://geraldb.github.com/pluto
65
+ licenses: []
66
+
67
+ post_install_message:
68
+ rdoc_options:
69
+ - --main
70
+ - README.markdown
71
+ require_paths:
72
+ - lib
73
+ required_ruby_version: !ruby/object:Gem::Requirement
74
+ none: false
75
+ requirements:
76
+ - - ">="
77
+ - !ruby/object:Gem::Version
78
+ hash: 3
79
+ segments:
80
+ - 0
81
+ version: "0"
82
+ required_rubygems_version: !ruby/object:Gem::Requirement
83
+ none: false
84
+ requirements:
85
+ - - ">="
86
+ - !ruby/object:Gem::Version
87
+ hash: 3
88
+ segments:
89
+ - 0
90
+ version: "0"
91
+ requirements: []
92
+
93
+ rubyforge_project: pluto
94
+ rubygems_version: 1.8.24
95
+ signing_key:
96
+ specification_version: 3
97
+ summary: pluto - Another Planet Generator
98
+ test_files: []
99
+