stringtoascii 1.5.0

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 (3) hide show
  1. checksums.yaml +7 -0
  2. data/lib/stringtoascii.rb +7 -0
  3. metadata +44 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: b3b6be271b372347fb87516fed5c142d293c3337
4
+ data.tar.gz: 95e86f83947433bf35f82f6c31de7648e65d2efd
5
+ SHA512:
6
+ metadata.gz: 72f09d70fdb2b9ff07de3a44fd1e6cec81a710f39dfb30c574ac7660f680ad6dcd2a381ca8bb2fb13d51022543f9156c34ad537d70afc474390add485f344533
7
+ data.tar.gz: 988c1ca2060cbbc65a4fd5777d3950a258c0eb391f4eb5c02a8bd09ee77a3062c0b2855f6b74c044fb82809a816390d5941a95a90533e98be4b7df921db5f60a
@@ -0,0 +1,7 @@
1
+ class Hola
2
+ def self.convert(alphabet)
3
+ alphabet.each_byte do |c|
4
+ puts c
5
+ end
6
+ end
7
+ end
metadata ADDED
@@ -0,0 +1,44 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: stringtoascii
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.5.0
5
+ platform: ruby
6
+ authors:
7
+ - Sandeep Chourey
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-06-16 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: 'A simple gem for convert String to ASCII value '
14
+ email: schourey1988@gmail.com
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - lib/stringtoascii.rb
20
+ homepage: http://rubygems.org/gems/stringtoascii
21
+ licenses:
22
+ - MIT
23
+ metadata: {}
24
+ post_install_message:
25
+ rdoc_options: []
26
+ require_paths:
27
+ - lib
28
+ required_ruby_version: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: '0'
33
+ required_rubygems_version: !ruby/object:Gem::Requirement
34
+ requirements:
35
+ - - ">="
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ requirements: []
39
+ rubyforge_project:
40
+ rubygems_version: 2.4.3
41
+ signing_key:
42
+ specification_version: 4
43
+ summary: StringToAscii!
44
+ test_files: []