about 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/History.md ADDED
@@ -0,0 +1,3 @@
1
+ ### 0.0.1 / 2013-10-12
2
+
3
+ * Everything is new. First release.
data/Manifest.txt ADDED
@@ -0,0 +1,6 @@
1
+ History.md
2
+ Manifest.txt
3
+ README.md
4
+ Rakefile
5
+ lib/about.rb
6
+ lib/about/version.rb
data/README.md ADDED
@@ -0,0 +1,21 @@
1
+ # about gem
2
+
3
+ sys info (system information) about your computer, environment, runtime, libs, etc as mountable web app
4
+
5
+ * home :: [github.com/rubylibs/about](https://github.com/rubylibs/about)
6
+ * bugs :: [github.com/rubylibs/about/issues](https://github.com/rubylibs/about/issues)
7
+ * gem :: [rubygems.org/gems/about](https://rubygems.org/gems/about)
8
+ * rdoc :: [rubydoc.info/gems/about](http://rubydoc.info/gems/about)
9
+
10
+ ## Usage
11
+
12
+ TBD
13
+
14
+ ## Alternatives
15
+
16
+ TBD
17
+
18
+ ## License
19
+
20
+ The `about` scripts are dedicated to the public domain.
21
+ Use it as you please with no restrictions whatsoever.
data/Rakefile ADDED
@@ -0,0 +1,31 @@
1
+ require 'hoe'
2
+ require './lib/about/version.rb'
3
+
4
+ Hoe.spec 'about' do
5
+
6
+ self.version = About::VERSION
7
+
8
+ self.summary = 'about - sys info (system information) about your computer, environment, runtime, libs, etc. as mountable web app'
9
+ self.description = summary
10
+
11
+ self.urls = ['https://github.com/rubylibs/about']
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.md'
18
+ self.history_file = 'History.md'
19
+
20
+ self.extra_deps = [
21
+ ['logutils', '>= 0.5']
22
+ ]
23
+
24
+ self.licenses = ['Public Domain']
25
+
26
+ self.spec_extras = {
27
+ :required_ruby_version => '>= 1.9.2'
28
+ }
29
+
30
+
31
+ end
@@ -0,0 +1,4 @@
1
+
2
+ module About
3
+ VERSION = '0.0.1'
4
+ end
data/lib/about.rb ADDED
@@ -0,0 +1,22 @@
1
+
2
+
3
+ require 'about/version' # let it always go first
4
+
5
+
6
+ module About
7
+
8
+ def self.banner
9
+ "about #{VERSION} on Ruby #{RUBY_VERSION} (#{RUBY_RELEASE_DATE}) [#{RUBY_PLATFORM}]"
10
+ end
11
+
12
+ =begin
13
+ def self.root
14
+ "#{File.expand_path( File.dirname(File.dirname(__FILE__)) )}"
15
+ end
16
+ =end
17
+
18
+ end # module About
19
+
20
+
21
+ puts About.banner # say hello
22
+
metadata ADDED
@@ -0,0 +1,89 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: about
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Gerald Bauer
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-10-12 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: logutils
16
+ requirement: &77292950 !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '0.5'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: *77292950
25
+ - !ruby/object:Gem::Dependency
26
+ name: rdoc
27
+ requirement: &77292720 !ruby/object:Gem::Requirement
28
+ none: false
29
+ requirements:
30
+ - - ~>
31
+ - !ruby/object:Gem::Version
32
+ version: '3.10'
33
+ type: :development
34
+ prerelease: false
35
+ version_requirements: *77292720
36
+ - !ruby/object:Gem::Dependency
37
+ name: hoe
38
+ requirement: &77292470 !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ~>
42
+ - !ruby/object:Gem::Version
43
+ version: '3.3'
44
+ type: :development
45
+ prerelease: false
46
+ version_requirements: *77292470
47
+ description: about - sys info (system information) about your computer, environment,
48
+ runtime, libs, etc. as mountable web app
49
+ email: webslideshow@googlegroups.com
50
+ executables: []
51
+ extensions: []
52
+ extra_rdoc_files:
53
+ - Manifest.txt
54
+ files:
55
+ - History.md
56
+ - Manifest.txt
57
+ - README.md
58
+ - Rakefile
59
+ - lib/about.rb
60
+ - lib/about/version.rb
61
+ homepage: https://github.com/rubylibs/about
62
+ licenses:
63
+ - Public Domain
64
+ post_install_message:
65
+ rdoc_options:
66
+ - --main
67
+ - README.md
68
+ require_paths:
69
+ - lib
70
+ required_ruby_version: !ruby/object:Gem::Requirement
71
+ none: false
72
+ requirements:
73
+ - - ! '>='
74
+ - !ruby/object:Gem::Version
75
+ version: 1.9.2
76
+ required_rubygems_version: !ruby/object:Gem::Requirement
77
+ none: false
78
+ requirements:
79
+ - - ! '>='
80
+ - !ruby/object:Gem::Version
81
+ version: '0'
82
+ requirements: []
83
+ rubyforge_project: about
84
+ rubygems_version: 1.8.17
85
+ signing_key:
86
+ specification_version: 3
87
+ summary: about - sys info (system information) about your computer, environment, runtime,
88
+ libs, etc. as mountable web app
89
+ test_files: []