yorobot 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,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: e4a01dffcd31d94c4d24d33805291506d63ff460
4
+ data.tar.gz: f164e3bfc9bffb8d71aaf0712351cfc28bc9fc5b
5
+ SHA512:
6
+ metadata.gz: 118457eafb752db1011ee2b17af09433a1e7b40f2f92eb25af5f186889f104978a48a990b04df7f4352fac27da2e4269d842aa98bb5ee89fa983a8637992c8f8
7
+ data.tar.gz: 4464d6db62229b4cfe77a32e4ed3f2b59cdedcadfd6fcd83574c1e957e4ccfe4edf218fa5af315cb843a389955d380b622a3b9810dc0d8be316a925ba9f11d57
@@ -0,0 +1,4 @@
1
+ ### 0.0.1 / 2020-10-19
2
+
3
+ * Everything is new. First release.
4
+
@@ -0,0 +1,6 @@
1
+ CHANGELOG.md
2
+ Manifest.txt
3
+ README.md
4
+ Rakefile
5
+ lib/yorobot.rb
6
+ lib/yorobot/version.rb
@@ -0,0 +1,24 @@
1
+ # yorobot
2
+
3
+ yorobot gem - yorobot - automate, automate, automate - ready to use scripts
4
+
5
+
6
+ * home :: [github.com/rubycoco/git](https://github.com/rubycoco/git)
7
+ * bugs :: [github.com/rubycoco/git/issues](https://github.com/rubycoco/git/issues)
8
+ * gem :: [rubygems.org/gems/yorobot](https://rubygems.org/gems/yorobot)
9
+ * rdoc :: [rubydoc.info/gems/yorobot](http://rubydoc.info/gems/yorobot)
10
+
11
+
12
+
13
+ ## Usage
14
+
15
+ To be done
16
+
17
+
18
+
19
+
20
+ ## License
21
+
22
+ The `yorobot` scripts are dedicated to the public domain.
23
+ Use it as you please with no restrictions whatsoever.
24
+
@@ -0,0 +1,28 @@
1
+ require 'hoe'
2
+ require './lib/yorobot/version.rb'
3
+
4
+ Hoe.spec 'yorobot' do
5
+
6
+ self.version = YorobotCore::VERSION
7
+
8
+ self.summary = "yorobot - automate, automate, automate - ready to use scripts"
9
+ self.description = summary
10
+
11
+ self.urls = { home: 'https://github.com/rubycoco/git' }
12
+
13
+ self.author = 'Gerald Bauer'
14
+ self.email = 'ruby-talk@ruby-lang.org'
15
+
16
+ # switch extension to .markdown for gihub formatting
17
+ self.readme_file = 'README.md'
18
+ self.history_file = 'CHANGELOG.md'
19
+
20
+ self.extra_deps = []
21
+
22
+ self.licenses = ['Public Domain']
23
+
24
+ self.spec_extras = {
25
+ required_ruby_version: '>= 2.2.2'
26
+ }
27
+
28
+ end
@@ -0,0 +1,7 @@
1
+ # our own code
2
+ require 'yorobot/version' # note: let version always go first
3
+
4
+
5
+
6
+ # say hello
7
+ puts YorobotCore.banner
@@ -0,0 +1,24 @@
1
+
2
+ ## todo/check:
3
+ ## use Yorobot::Module::Core or Commands or Tool or such - why? why not?
4
+
5
+
6
+ module YorobotCore ## todo/check: rename GittiBase or GittiMeta or such - why? why not?
7
+ MAJOR = 0 ## todo: namespace inside version or something - why? why not??
8
+ MINOR = 0
9
+ PATCH = 1
10
+ VERSION = [MAJOR,MINOR,PATCH].join('.')
11
+
12
+ def self.version
13
+ VERSION
14
+ end
15
+
16
+ def self.banner
17
+ "yorobot/#{VERSION} on Ruby #{RUBY_VERSION} (#{RUBY_RELEASE_DATE}) [#{RUBY_PLATFORM}]"
18
+ end
19
+
20
+ def self.root
21
+ "#{File.expand_path( File.dirname(File.dirname(File.dirname(__FILE__))) )}"
22
+ end
23
+ end # module YorobotCore
24
+
metadata ADDED
@@ -0,0 +1,88 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: yorobot
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Gerald Bauer
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2020-10-19 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rdoc
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '4.0'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '7'
23
+ type: :development
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '4.0'
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '7'
33
+ - !ruby/object:Gem::Dependency
34
+ name: hoe
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '3.22'
40
+ type: :development
41
+ prerelease: false
42
+ version_requirements: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - "~>"
45
+ - !ruby/object:Gem::Version
46
+ version: '3.22'
47
+ description: yorobot - automate, automate, automate - ready to use scripts
48
+ email: ruby-talk@ruby-lang.org
49
+ executables: []
50
+ extensions: []
51
+ extra_rdoc_files:
52
+ - CHANGELOG.md
53
+ - Manifest.txt
54
+ - README.md
55
+ files:
56
+ - CHANGELOG.md
57
+ - Manifest.txt
58
+ - README.md
59
+ - Rakefile
60
+ - lib/yorobot.rb
61
+ - lib/yorobot/version.rb
62
+ homepage: https://github.com/rubycoco/git
63
+ licenses:
64
+ - Public Domain
65
+ metadata: {}
66
+ post_install_message:
67
+ rdoc_options:
68
+ - "--main"
69
+ - README.md
70
+ require_paths:
71
+ - lib
72
+ required_ruby_version: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - ">="
75
+ - !ruby/object:Gem::Version
76
+ version: 2.2.2
77
+ required_rubygems_version: !ruby/object:Gem::Requirement
78
+ requirements:
79
+ - - ">="
80
+ - !ruby/object:Gem::Version
81
+ version: '0'
82
+ requirements: []
83
+ rubyforge_project:
84
+ rubygems_version: 2.5.2
85
+ signing_key:
86
+ specification_version: 4
87
+ summary: yorobot - automate, automate, automate - ready to use scripts
88
+ test_files: []