ss7 1.0.2 → 1.0.3

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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +1 -1
  3. data/README.md +10 -9
  4. data/lib/ss7/version.rb +1 -1
  5. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4f2680658039ffaa2c67044f7703b5b3c483e394c94d45f8354de8586945649e
4
- data.tar.gz: 300f477eb3dda3ef40a3a1bc91e0e0be209548f06090a101c37ff03cd8d3ca2a
3
+ metadata.gz: ade34ff88b3e9884c5e3b310855e53a83166d5798305a02dbccaf4117278dce8
4
+ data.tar.gz: 6fd29cfabbb27433c258a939660e1044d083456692e1cc479f72f529ae96d302
5
5
  SHA512:
6
- metadata.gz: 4d583e1e756cdeaa894ed4b8f3ac9a581d0550c25a4ab94d5482a51a35677866cf363d16c44d69f64308d894c964530322fa79145a839ec515a66296842a5c04
7
- data.tar.gz: cb9b432d866c9dec66b59eb1abc6c7f236a60d8877ce8b1a5aad09eac246c76db6217c2495c673189948cf10764bb3289c90d17aa8c94b9c8658f0857cdb071d
6
+ metadata.gz: e3813783ee278743b61350ef65b9a551f92165fe112dbfa2519779cf5e245db3504cd6d89a85b72b7ea9e525fc10935179a5a6552961403ce81ef29276bb86b4
7
+ data.tar.gz: ebfddf98c3f5225bf59c856a27fd01c58c09d2b71bd80f5310fe8effc46d0d530471c31ad72c9a4deca0e526bc889f92343a6e9d13f230816e18c2bc62eb8e0f
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ss7 (1.0.2)
4
+ ss7 (1.0.3)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -29,17 +29,18 @@ Or install it yourself as:
29
29
 
30
30
  ## Usage
31
31
 
32
- require ss7
32
+ require 'ss7'
33
+
33
34
  include Ss7
34
35
 
35
- dec2pc77("12900") to convert decimal into SS7 point code 7-7
36
- pc772dec("65-87") to convert SS7 point code 7-7 into Decimal
37
- dec2oct("750") to convert decimal into Octal
38
- dec2bin("750") to convert decimal into Binary
39
- dec2hex("750") to convert decimal into Hexadecimal
40
- oct2dec("765") to convert Octal into Decimal
41
- bin2dec("11100011") to convert Binary into Decimal
42
- hex2dec("AbC3") to convert Hexadecimal into Decimal
36
+ dec2pc77("12900") ====> to convert decimal into SS7 point code 7-7
37
+ pc772dec("65-87") ====> to convert SS7 point code 7-7 into Decimal
38
+ dec2oct("750") ====> to convert decimal into Octal
39
+ dec2bin("750") ====> to convert decimal into Binary
40
+ dec2hex("750") ====> to convert decimal into Hexadecimal
41
+ oct2dec("765") ====> to convert Octal into Decimal
42
+ bin2dec("11100011") ====> to convert Binary into Decimal
43
+ hex2dec("AbC3") ====> to convert Hexadecimal into Decimal
43
44
 
44
45
  ## Development
45
46
 
data/lib/ss7/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Ss7
2
- VERSION = "1.0.2"
2
+ VERSION = "1.0.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ss7
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Anand Raja (AR)