bitcat 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/HISTORY.md +3 -0
- data/Manifest.txt +6 -0
- data/README.md +42 -0
- data/Rakefile +29 -0
- data/lib/bitcat/version.rb +23 -0
- data/lib/bitcat.rb +11 -0
- metadata +84 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 3897c5335d1664970852cc1e6396e7e434ea77b0
|
4
|
+
data.tar.gz: 3d4fbf418a8fa9b79348975e5e65a98867171dea
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 90c00dc574dc1abe59647162a65202d36bd7b905fe08312aa24021fef4a763a0dc042781a33cd1c4694d2b4bae5a8fbc38a77b99aac3734bb9c193eadb150bd3
|
7
|
+
data.tar.gz: 14048230792f6dbc58b13475ea00223187ed537c9302255298521dcf6e28b81c611af56c381349d43c5af19a7e7da44eb8de7d2886d22b4265979138020ccb01
|
data/HISTORY.md
ADDED
data/Manifest.txt
ADDED
data/README.md
ADDED
@@ -0,0 +1,42 @@
|
|
1
|
+
# bitcat - Bit Catalog Browser
|
2
|
+
|
3
|
+
browse your (digital) bit(s) collections -
|
4
|
+
browse your (crypto) kitties and more
|
5
|
+
|
6
|
+
|
7
|
+
* home :: [github.com/openblockchains/bitcat](https://github.com/openblockchains/bitcat)
|
8
|
+
* bugs :: [github.com/openblockchains/bitcat/issues](https://github.com/openblockchains/bitcat/issues)
|
9
|
+
* gem :: [rubygems.org/gems/bitcat](https://rubygems.org/gems/bitcat)
|
10
|
+
* rdoc :: [rubydoc.info/gems/bitcat](http://rubydoc.info/gems/bitcat)
|
11
|
+
|
12
|
+
|
13
|
+
|
14
|
+
## Usage
|
15
|
+
|
16
|
+
to be done
|
17
|
+
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
|
22
|
+
## Installation - I Can Has Bitcat?
|
23
|
+
|
24
|
+
Use:
|
25
|
+
|
26
|
+
```
|
27
|
+
$ gem install bitcat
|
28
|
+
```
|
29
|
+
|
30
|
+
|
31
|
+
## Questions? Comments?
|
32
|
+
|
33
|
+
Post them on the [cryptokitties reddit](https://www.reddit.com/r/cryptokitties). Thanks.
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
## License
|
38
|
+
|
39
|
+
![](https://publicdomainworks.github.io/buttons/zero88x31.png)
|
40
|
+
|
41
|
+
The `bitcat` scripts are dedicated to the public domain.
|
42
|
+
Use it as you please with no restrictions whatsoever.
|
data/Rakefile
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
require 'hoe'
|
2
|
+
require './lib/bitcat/version.rb'
|
3
|
+
|
4
|
+
Hoe.spec 'bitcat' do
|
5
|
+
|
6
|
+
self.version = Bitcat::VERSION
|
7
|
+
|
8
|
+
self.summary = "bitcat - bit cat(alog) browser - browse your (digital) bit(s) collections; browse your (crypto) kitties and more"
|
9
|
+
self.description = summary
|
10
|
+
|
11
|
+
self.urls = ['https://github.com/openblockchains/bitcat']
|
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 = 'HISTORY.md'
|
19
|
+
|
20
|
+
self.extra_deps = [
|
21
|
+
]
|
22
|
+
|
23
|
+
self.licenses = ['Public Domain']
|
24
|
+
|
25
|
+
self.spec_extras = {
|
26
|
+
required_ruby_version: '>= 2.3'
|
27
|
+
}
|
28
|
+
|
29
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
|
4
|
+
module Bitcat
|
5
|
+
|
6
|
+
MAJOR = 0
|
7
|
+
MINOR = 0
|
8
|
+
PATCH = 1
|
9
|
+
VERSION = [MAJOR,MINOR,PATCH].join('.')
|
10
|
+
|
11
|
+
def self.version
|
12
|
+
VERSION
|
13
|
+
end
|
14
|
+
|
15
|
+
def self.banner
|
16
|
+
"bitcat/#{VERSION} on Ruby #{RUBY_VERSION} (#{RUBY_RELEASE_DATE}) [#{RUBY_PLATFORM}]"
|
17
|
+
end
|
18
|
+
|
19
|
+
def self.root
|
20
|
+
"#{File.expand_path( File.dirname(File.dirname(File.dirname(__FILE__))) )}"
|
21
|
+
end
|
22
|
+
|
23
|
+
end # module Bitcat
|
data/lib/bitcat.rb
ADDED
metadata
ADDED
@@ -0,0 +1,84 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: bitcat
|
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: 2018-03-24 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
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '4.0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: hoe
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '3.16'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '3.16'
|
41
|
+
description: bitcat - bit cat(alog) browser - browse your (digital) bit(s) collections;
|
42
|
+
browse your (crypto) kitties and more
|
43
|
+
email: wwwmake@googlegroups.com
|
44
|
+
executables: []
|
45
|
+
extensions: []
|
46
|
+
extra_rdoc_files:
|
47
|
+
- HISTORY.md
|
48
|
+
- Manifest.txt
|
49
|
+
- README.md
|
50
|
+
files:
|
51
|
+
- HISTORY.md
|
52
|
+
- Manifest.txt
|
53
|
+
- README.md
|
54
|
+
- Rakefile
|
55
|
+
- lib/bitcat.rb
|
56
|
+
- lib/bitcat/version.rb
|
57
|
+
homepage: https://github.com/openblockchains/bitcat
|
58
|
+
licenses:
|
59
|
+
- Public Domain
|
60
|
+
metadata: {}
|
61
|
+
post_install_message:
|
62
|
+
rdoc_options:
|
63
|
+
- "--main"
|
64
|
+
- README.md
|
65
|
+
require_paths:
|
66
|
+
- lib
|
67
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
68
|
+
requirements:
|
69
|
+
- - ">="
|
70
|
+
- !ruby/object:Gem::Version
|
71
|
+
version: '2.3'
|
72
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
73
|
+
requirements:
|
74
|
+
- - ">="
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
version: '0'
|
77
|
+
requirements: []
|
78
|
+
rubyforge_project:
|
79
|
+
rubygems_version: 2.5.2
|
80
|
+
signing_key:
|
81
|
+
specification_version: 4
|
82
|
+
summary: bitcat - bit cat(alog) browser - browse your (digital) bit(s) collections;
|
83
|
+
browse your (crypto) kitties and more
|
84
|
+
test_files: []
|