mos-eisley 0.2.0 → 0.2.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6f64f23d469c363076a95b08fb398401d39c9f87
4
- data.tar.gz: 70893cdb001ec0d02a62d9d4761ec06f2d2dd460
3
+ metadata.gz: d5529becb768cce998bee34788e440fe76d5b11e
4
+ data.tar.gz: 5132679c903e99480446f9fcef9a17a3af9861bc
5
5
  SHA512:
6
- metadata.gz: 838d2f9fe040fba456cf044bd25c8a13828f894b7593e2d6603909dc09085b5e6ff854a973015cf86fff233a047bd8ccca2952fbf1b0533fa53cefb544513298
7
- data.tar.gz: c53eb1d6176f607746ae8a9689f7b884987357f664277cc91727bd5f058e7e4918a11b9b70c7f586b37f36d2be6cbb7bda6cae9018357e091700df45cc2f8444
6
+ metadata.gz: ab259e18673bbd68f4af2800137eab81355fee483cfc456d33f8139a22081f53786d0122750603d2065af69ee86380a93cfce911bb8fed3fa323a9313bea09ac
7
+ data.tar.gz: 8ede1448e9e902b94da8f73c7f78df62d396c0293661f35de05ccfe92f7e008dad5fee43c7de0b2e713b14d63dd203e3c78002d8ee0a565b9c832e007e0dff79
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2017 Ken J.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -1,5 +1,5 @@
1
1
  module MosEisley
2
2
 
3
- VERSION = '0.2.0'.freeze
3
+ VERSION = '0.2.1'.freeze
4
4
 
5
5
  end
data/lib/s3po/s3po.rb CHANGED
@@ -41,7 +41,7 @@ module MosEisley
41
41
  when Hash
42
42
  val.reduce({}) { |h, (k, v)| h.merge({k => s3po.format_json_value(v)}) }
43
43
  when String
44
- val.encode!('UTF-8', {invalid: :replace, undef: :replace})
44
+ val.encode('UTF-8', {invalid: :replace, undef: :replace})
45
45
  when Time
46
46
  val.utc.iso8601
47
47
  else
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mos-eisley
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ken J.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-02-14 00:00:00.000000000 Z
11
+ date: 2018-02-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: em-http-request
@@ -75,7 +75,7 @@ executables:
75
75
  extensions: []
76
76
  extra_rdoc_files: []
77
77
  files:
78
- - ".rubocop.yml"
78
+ - LICENSE
79
79
  - README.md
80
80
  - bin/mos-eisley
81
81
  - lib/http-client/client.rb
@@ -112,7 +112,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
112
112
  version: '0'
113
113
  requirements: []
114
114
  rubyforge_project:
115
- rubygems_version: 2.4.8
115
+ rubygems_version: 2.6.12
116
116
  signing_key:
117
117
  specification_version: 4
118
118
  summary: A Ruby based multi-purpose Slack app server
data/.rubocop.yml DELETED
@@ -1,3 +0,0 @@
1
- ---
2
- Layout/SpaceInsideHashLiteralBraces:
3
- Enabled: false