json5rb 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: cb52a33fb8063e50edc260653eceef9ac905823629fdd0cb45129cb61e3fd28b
4
+ data.tar.gz: 5cfe663683eaad5d9f62d7f28e1ef0171f6160baab9a5104af220eb97d451ca3
5
+ SHA512:
6
+ metadata.gz: fc42cac0e9d1bac03c2cb3ce380ddc8aa2e8ee9e56360dbe81993b2d1e0a28a8e1c6d324b888efaf8a9cb2b9a057d54dbaba4f52cc1d1a829ab3e5d3bb28a90a
7
+ data.tar.gz: 5af9e5a3386135c8b9e3ff63665c2157d3d2188ee6a965477503997bf098a033500729d3bd64f34750d8c3e3f6d4a3f156d23de20af066ed531f6974ba2f816f
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,17 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ json5rb (0.0.1)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+
10
+ PLATFORMS
11
+ x64-mingw32
12
+
13
+ DEPENDENCIES
14
+ json5rb!
15
+
16
+ BUNDLED WITH
17
+ 2.1.4
data/LICENSE.md ADDED
@@ -0,0 +1,21 @@
1
+ # MIT LICENSE
2
+
3
+ Copyright (c) 2020 Ken Spencer <me@iotaspencer.me>
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
13
+ all 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
21
+ THE SOFTWARE.
data/json5rb.gemspec ADDED
@@ -0,0 +1,19 @@
1
+ # encoding: utf-8
2
+
3
+ $:.unshift File.expand_path('../lib', __FILE__)
4
+ require 'json5rb/version'
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = 'json5rb'
8
+ s.version = Json5rb::VERSION
9
+ s.authors = ['Ken Spencer, IotaSpencer']
10
+ s.email = ['me@iotaspencer.me']
11
+ s.homepage = 'https://github.com/IotaSpencer/json5rb'
12
+ s.licenses = ['MIT']
13
+ s.summary = '[summary]'
14
+ s.description = '[description]'
15
+
16
+ s.files = Dir.glob('{bin/*,lib/**/*,[A-Z]*}')
17
+ s.platform = Gem::Platform::RUBY
18
+ s.require_paths = ['lib']
19
+ end
@@ -0,0 +1,3 @@
1
+ module Json5rb
2
+ VERSION = '0.0.1'
3
+ end
data/lib/json5rb.rb ADDED
@@ -0,0 +1,2 @@
1
+ module Json5rb
2
+ end
metadata ADDED
@@ -0,0 +1,50 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: json5rb
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Ken Spencer, IotaSpencer
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2020-03-09 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: "[description]"
14
+ email:
15
+ - me@iotaspencer.me
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - Gemfile
21
+ - Gemfile.lock
22
+ - LICENSE.md
23
+ - json5rb.gemspec
24
+ - lib/json5rb.rb
25
+ - lib/json5rb/version.rb
26
+ homepage: https://github.com/IotaSpencer/json5rb
27
+ licenses:
28
+ - MIT
29
+ metadata: {}
30
+ post_install_message:
31
+ rdoc_options: []
32
+ require_paths:
33
+ - lib
34
+ required_ruby_version: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ">="
37
+ - !ruby/object:Gem::Version
38
+ version: '0'
39
+ required_rubygems_version: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: '0'
44
+ requirements: []
45
+ rubyforge_project:
46
+ rubygems_version: 2.7.6.2
47
+ signing_key:
48
+ specification_version: 4
49
+ summary: "[summary]"
50
+ test_files: []