cryptoquotes 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 3931771a5a3ca5a7dbab0355765263550ffab1df74e53f35f2c2b3a62e673076
4
+ data.tar.gz: 98ff43b2c71652473fa86e254d890b617c53e1463effba4df9905895b6af5655
5
+ SHA512:
6
+ metadata.gz: 0dad9cc565cbd05c3a0fa663b2a459e375153da2b8188a45c7b0e512afcd8e80b6310e92224bd74f9c0eba0fcb2ee2b136e60c8ac0fcd8f75c5dc6e3f2726d4b
7
+ data.tar.gz: 9daea358f1195c3cdd748ec3b1fb9cb802b3ab9dcfce5a96190e4898b5c99fab786477a221cef72715726f4fa327302dd45f8bbf8e7cffe608485dd94c5d6d2f
@@ -0,0 +1,3 @@
1
+ ### 0.0.1 / 2020-12-15
2
+
3
+ * Everything is new. First release
@@ -0,0 +1,6 @@
1
+ CHANGELOG.md
2
+ Manifest.txt
3
+ README.md
4
+ Rakefile
5
+ lib/cryptoquotes.rb
6
+ lib/cryptoquotes/version.rb
@@ -0,0 +1,29 @@
1
+ # cryptoquotes
2
+
3
+ Crypto Quote of the Day - On the New New "In Math We Trust" Ponzi Economics - On Get-Rich-Quick Blockchain Secrets - On Bitcon Maximalists, Scammers, Morons, Clowns, Shills & BagHODLers and More
4
+
5
+
6
+ ## Usage
7
+
8
+ to be done
9
+
10
+
11
+
12
+
13
+ ## Install
14
+
15
+ Just install the gem:
16
+
17
+ $ gem install cryptoquotes
18
+
19
+
20
+ ## License
21
+
22
+ The scripts are dedicated to the public domain.
23
+ Use it as you please with no restrictions whatsoever.
24
+
25
+
26
+ ## Questions? Comments?
27
+
28
+ Send them along to the [wwwmake forum](http://groups.google.com/group/wwwmake).
29
+ Thanks!
@@ -0,0 +1,28 @@
1
+ require 'hoe'
2
+ require './lib/cryptoquotes/version.rb'
3
+
4
+ Hoe.spec 'cryptoquotes' do
5
+
6
+ self.version = Quotes::VERSION
7
+
8
+ self.summary = "cryptoquotes - Crypto Quote of the Day - On the New New 'In Math We Trust' Ponzi Economics - On Get-Rich-Quick Blockchain Secrets - On Bitcon Maximalists, Scammers, Morons, Clowns, Shills & BagHODLers and More"
9
+ self.description = summary
10
+
11
+ self.urls = { home: 'https://github.com/rubycoco/blockchain' }
12
+
13
+ self.author = 'Gerald Bauer'
14
+ self.email = 'wwwmake@googlegroups.com'
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.3'
26
+ }
27
+
28
+ end
@@ -0,0 +1,9 @@
1
+ require 'pp'
2
+
3
+
4
+ ## our own code
5
+ require 'cryptoquotes/version' # note: let version always go first
6
+
7
+
8
+ pp Quotes.banner
9
+ pp Quotes.root
@@ -0,0 +1,22 @@
1
+
2
+
3
+ module Quotes
4
+
5
+ MAJOR = 0
6
+ MINOR = 0
7
+ PATCH = 1
8
+ VERSION = [MAJOR,MINOR,PATCH].join('.')
9
+
10
+ def self.version
11
+ VERSION
12
+ end
13
+
14
+ def self.banner
15
+ "cryptoquotes/#{VERSION} on Ruby #{RUBY_VERSION} (#{RUBY_RELEASE_DATE}) [#{RUBY_PLATFORM}] (in #{root})"
16
+ end
17
+
18
+ def self.root
19
+ File.expand_path( File.dirname(File.dirname(File.dirname(__FILE__))) )
20
+ end
21
+
22
+ end # module Quotes
metadata ADDED
@@ -0,0 +1,91 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: cryptoquotes
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-12-15 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: cryptoquotes - Crypto Quote of the Day - On the New New 'In Math We Trust'
48
+ Ponzi Economics - On Get-Rich-Quick Blockchain Secrets - On Bitcon Maximalists,
49
+ Scammers, Morons, Clowns, Shills & BagHODLers and More
50
+ email: wwwmake@googlegroups.com
51
+ executables: []
52
+ extensions: []
53
+ extra_rdoc_files:
54
+ - CHANGELOG.md
55
+ - Manifest.txt
56
+ - README.md
57
+ files:
58
+ - CHANGELOG.md
59
+ - Manifest.txt
60
+ - README.md
61
+ - Rakefile
62
+ - lib/cryptoquotes.rb
63
+ - lib/cryptoquotes/version.rb
64
+ homepage: https://github.com/rubycoco/blockchain
65
+ licenses:
66
+ - Public Domain
67
+ metadata: {}
68
+ post_install_message:
69
+ rdoc_options:
70
+ - "--main"
71
+ - README.md
72
+ require_paths:
73
+ - lib
74
+ required_ruby_version: !ruby/object:Gem::Requirement
75
+ requirements:
76
+ - - ">="
77
+ - !ruby/object:Gem::Version
78
+ version: '2.3'
79
+ required_rubygems_version: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - ">="
82
+ - !ruby/object:Gem::Version
83
+ version: '0'
84
+ requirements: []
85
+ rubygems_version: 3.1.4
86
+ signing_key:
87
+ specification_version: 4
88
+ summary: cryptoquotes - Crypto Quote of the Day - On the New New 'In Math We Trust'
89
+ Ponzi Economics - On Get-Rich-Quick Blockchain Secrets - On Bitcon Maximalists,
90
+ Scammers, Morons, Clowns, Shills & BagHODLers and More
91
+ test_files: []