parsel 0.1.0 → 0.1.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.
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- parsel (0.1.0)
4
+ parsel (0.1.1)
5
5
 
6
6
  GEM
7
7
  remote: http://rubygems.org/
@@ -23,10 +23,10 @@ module Parsel
23
23
  end
24
24
 
25
25
  def self.encode(data)
26
- Base64.encode64(data).chomp
26
+ Base64.encode64(data).gsub(/\n/, "")
27
27
  end
28
28
 
29
29
  def self.decode(data)
30
- Base64.decode64(data).chomp
30
+ Base64.decode64(data)
31
31
  end
32
32
  end
@@ -2,7 +2,7 @@ module Parsel
2
2
  module Version
3
3
  MAJOR = 0
4
4
  MINOR = 1
5
- PATCH = 0
5
+ PATCH = 1
6
6
  STRING = "#{MAJOR}.#{MINOR}.#{PATCH}"
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: parsel
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -75,7 +75,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
75
75
  version: '0'
76
76
  segments:
77
77
  - 0
78
- hash: -2861301194384926931
78
+ hash: 2250561470774246864
79
79
  required_rubygems_version: !ruby/object:Gem::Requirement
80
80
  none: false
81
81
  requirements:
@@ -84,7 +84,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
84
84
  version: '0'
85
85
  segments:
86
86
  - 0
87
- hash: -2861301194384926931
87
+ hash: 2250561470774246864
88
88
  requirements: []
89
89
  rubyforge_project:
90
90
  rubygems_version: 1.8.23