golomb 0.0.1 → 0.0.2
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.
- checksums.yaml +4 -4
- data/README.md +1 -9
- data/bin/golomb +1 -1
- data/golomb.gemspec +1 -1
- data/lib/golomb.rb +3 -3
- data/lib/golomb/encoder.rb +1 -1
- data/lib/golomb/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3c0a9c98982aa8115ee7293ee173115bb4b331a9
|
4
|
+
data.tar.gz: 272ae51e36b9709ccb4e58bf210d2ccfb463299a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 998ef1179ad83b0acd787eaaab6060d1ba601e0a73dde6cdd70a4014df450018286029de4aa753fbe3a7403e777abe0987d465f83291f71e6017f2001e0df4e7
|
7
|
+
data.tar.gz: 1cece48557468596d75a825880882b73dc6e08eab85d4981e585e3b5cd5aa92332c853c6c111c8ec74ef07f8c0f72ab8c99d68ba5f36ef39834aef363c6890fd
|
data/README.md
CHANGED
@@ -8,18 +8,10 @@ Make sure that you have the Ruby's environment installed.
|
|
8
8
|
|
9
9
|
#### Installing via Ruby Gems
|
10
10
|
|
11
|
-
$ gem install golomb
|
11
|
+
$ gem install golomb
|
12
12
|
|
13
13
|
After installing you have access to the command `golomb` on your terminal.
|
14
14
|
|
15
|
-
#### Manual installation
|
16
|
-
|
17
|
-
Download the project and execute the command below. Make sure that you are on the project directory.
|
18
|
-
|
19
|
-
$ bundle install
|
20
|
-
|
21
|
-
This command will install all dependencies. After installed you can access the binary located in `bin/golomb`. Execute the binary based on the examples below.
|
22
|
-
|
23
15
|
## Usage
|
24
16
|
|
25
17
|
The tool has the commands `encode` and `decode`.
|
data/bin/golomb
CHANGED
data/golomb.gemspec
CHANGED
@@ -4,7 +4,7 @@ require File.join([File.dirname(__FILE__),'lib','golomb','encoder.rb'])
|
|
4
4
|
spec = Gem::Specification.new do |s|
|
5
5
|
s.name = 'golomb'
|
6
6
|
s.version = Golomb::VERSION
|
7
|
-
s.author = 'Bruno Flach Bohn /
|
7
|
+
s.author = 'Bruno Flach Bohn / Cassio Ghilardi'
|
8
8
|
s.platform = Gem::Platform::RUBY
|
9
9
|
s.summary = 'Golomb command-line tool'
|
10
10
|
s.files = `git ls-files`.split("
|
data/lib/golomb.rb
CHANGED
@@ -1,3 +1,3 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
1
|
+
require_relative 'golomb/version.rb'
|
2
|
+
require_relative 'golomb/encoder.rb'
|
3
|
+
require_relative 'golomb/decoder.rb'
|
data/lib/golomb/encoder.rb
CHANGED
data/lib/golomb/version.rb
CHANGED
metadata
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: golomb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
- Bruno Flach Bohn /
|
7
|
+
- Bruno Flach Bohn / Cassio Ghilardi
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
@@ -127,7 +127,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
127
127
|
version: '0'
|
128
128
|
requirements: []
|
129
129
|
rubyforge_project:
|
130
|
-
rubygems_version: 2.4.
|
130
|
+
rubygems_version: 2.4.6
|
131
131
|
signing_key:
|
132
132
|
specification_version: 4
|
133
133
|
summary: Golomb command-line tool
|