my_string_extend_dee 0.0.1

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/my_string_extend_dee.rb +8 -0
  3. metadata +46 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 1f694739c95580d1a704cb68c72b566dccc15e8e
4
+ data.tar.gz: f2475a3fda9897aecc0d9c705399d19ccc83bf62
5
+ SHA512:
6
+ metadata.gz: 603e32e979687878b440f1cffa38ca4a2c8abe367201dbb99da51b389250e61a01e55db425eaea342ddd405fb74cc8d277ea4c8f291e590f1a7c27a3802b668e
7
+ data.tar.gz: ffd4885d5aa583f6e8c568a8cafd18f78c08a9edd1315783e00c21b4e52ab3c04400a1af8938033243c0eda4d4095a78395c2f20d2c36d8eeeb901356713c9dd
@@ -0,0 +1,8 @@
1
+ # Our library will extend the String class. Our code goes in the lib folder.
2
+ class String
3
+ def writesize
4
+ self.size
5
+ end
6
+ end
7
+
8
+
metadata ADDED
@@ -0,0 +1,46 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: my_string_extend_dee
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Damian Esteban
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-02-17 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: |-
14
+ The library opens up the String class and adds a method
15
+ writesize, which returns the size of the string.
16
+ email:
17
+ - damian.esteban@gmail.com
18
+ executables: []
19
+ extensions: []
20
+ extra_rdoc_files: []
21
+ files:
22
+ - lib/my_string_extend_dee.rb
23
+ homepage: http://www.estebanrules.com
24
+ licenses: []
25
+ metadata: {}
26
+ post_install_message:
27
+ rdoc_options: []
28
+ require_paths:
29
+ - lib
30
+ required_ruby_version: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - ">="
33
+ - !ruby/object:Gem::Version
34
+ version: '0'
35
+ required_rubygems_version: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: '0'
40
+ requirements: []
41
+ rubyforge_project:
42
+ rubygems_version: 2.2.2
43
+ signing_key:
44
+ specification_version: 4
45
+ summary: String Extend
46
+ test_files: []