cielo_old 1.0.2 → 1.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b3c0ecfcdb2c5810ea8d0bd84058f56773aee053
4
- data.tar.gz: abf6678c660515537cfe9f45a16b8df17870e34f
3
+ metadata.gz: 139d4cf132cb97ab30ce4bd53cbd37822aa040f8
4
+ data.tar.gz: 7c002614adc4a3bec8b6f3676c2a72a68816dcf5
5
5
  SHA512:
6
- metadata.gz: 6cec2db42b13d4904901a4699a12c7d84871052b99c283d71835bd59420cb432d7a43dd60f45c2e795841d17d9b416d294ed38d8defc105721bc68c33f29674c
7
- data.tar.gz: 18ebd0e2e7024b0b3b55b31d18d1519297c3ff82aefee0fe4d925d159d6a6de9c7a17f479cd8a1b83aa5f05e12c25a92c581b33701c25ed1758e584f2b1d1d44
6
+ metadata.gz: 334b23c1ebdbe02b70d59b2261b9cf5ec84e6101df08fec18a509e2f38e076c10450e09d0a054439d7141b639c110d69d0344b4aed0997f0d49db9b77016597d
7
+ data.tar.gz: 562af4a2840a8efc6983dd1a65c0dcebc58029dfcfabe805e42fa1c25f25d96cb9155477f8c9921e3eeb832e0dadd6a8b226805bf2daacb9ccda41508f6698a7
data/cielo.gemspec CHANGED
@@ -31,6 +31,7 @@ Gem::Specification.new do |s|
31
31
  'Rakefile',
32
32
  'cielo.gemspec',
33
33
  'lib/cielo.rb',
34
+ 'lib/cielo/string.rb',
34
35
  'lib/cielo/connection.rb',
35
36
  'lib/cielo/token.rb',
36
37
  'lib/cielo/transaction.rb',
@@ -0,0 +1,5 @@
1
+ class String
2
+ def remove(pattern)
3
+ gsub pattern, ''
4
+ end
5
+ end
data/lib/cielo/version.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  module Cielo
2
2
  MAJOR = 1
3
3
  MINOR = 0
4
- PATCH = 2
4
+ PATCH = 3
5
5
  VERSION = "#{MAJOR}.#{MINOR}.#{PATCH}"
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cielo_old
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
  - Ilton
@@ -154,6 +154,7 @@ files:
154
154
  - cielo.gemspec
155
155
  - lib/cielo.rb
156
156
  - lib/cielo/connection.rb
157
+ - lib/cielo/string.rb
157
158
  - lib/cielo/token.rb
158
159
  - lib/cielo/transaction.rb
159
160
  - lib/cielo/version.rb