transmutation 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
  SHA256:
3
- metadata.gz: 0dd356719d0c48951dd08d327c72b1b94b7b7ef4437c105fcbc7a22558bf4c14
4
- data.tar.gz: efc9997ee8be40ce11894d7a64e570e7d53f617a3251bebb48c4f940050065be
3
+ metadata.gz: f291b37c957ebb47d6d08fc4591d62b93f3cc03cd5bd6ca10dccaa2ad53e140e
4
+ data.tar.gz: a8df9a22118a10a20112555378756866bbe190ac6f643f7f24089f8327a3bfb2
5
5
  SHA512:
6
- metadata.gz: 93784f5a82ac13bcb4dc2560a12fccdee59135e5576dad82a556f4cb5f709811b7909aaa024273e1a38c1900d0534f47abc0f3ff3410c0b3dbce215365f31b84
7
- data.tar.gz: 29daa074911fb3d8f984a5088963686155939093126a467940e54bd9d836b00705bfd6c13e54f1d2ed5199c4bdff18fc4d513ec9e692102f6065726d3a9fd994
6
+ metadata.gz: 50b1f81caaec7a83824e872d206843ebccd8e2bb143deedb64ffe7d512c2a0c8f8a22731be42f76ee5b10b4ceb249113005ca1246b90a75b0e136af24c2fc090
7
+ data.tar.gz: 5f66985fbddc2ac6251ee38595dc8c0345e1d8b11d9c36813dc93f86123b10529e045509dffd570bbc44eeb6903e5813f3f1e1f325a6581d61d04c8ed4291f3a
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- transmutation (0.2.0)
4
+ transmutation (0.2.1)
5
5
  zeitwerk (~> 2.6.15)
6
6
 
7
7
  GEM
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Transmutation
4
- VERSION = "0.2.0"
4
+ VERSION = "0.2.1"
5
5
  end
@@ -0,0 +1,35 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/transmutation/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "transmutation"
7
+ spec.version = Transmutation::VERSION
8
+ spec.authors = %w[nitemaeric borrabeer]
9
+ spec.email = %w[daniel@spellbook.tech worapath.pakkavesa@spellbook.tech]
10
+
11
+ spec.summary = "Ruby JSON serialization library"
12
+ spec.homepage = "https://github.com/spellbook-technology/transmutation"
13
+ spec.license = "MIT"
14
+ spec.required_ruby_version = ">= 3.0"
15
+
16
+ spec.metadata["homepage_uri"] = spec.homepage
17
+ spec.metadata["source_code_uri"] = "https://github.com/spellbook-technology/transmutation"
18
+ spec.metadata["changelog_uri"] = "https://github.com/spellbook-technology/transmutation/CHANGELOG.md"
19
+
20
+ # Specify which files should be added to the gem when it is released.
21
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
22
+ spec.files = Dir.chdir(__dir__) do
23
+ `git ls-files -z`.split("\x0").reject do |f|
24
+ (f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
25
+ end
26
+ end
27
+ spec.bindir = "exe"
28
+ spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
29
+ spec.require_paths = ["lib"]
30
+
31
+ spec.add_dependency "zeitwerk", "~> 2.6.15"
32
+
33
+ # For more information and examples about making a new gem, check out our
34
+ # guide at: https://bundler.io/guides/creating_gem.html
35
+ end
metadata CHANGED
@@ -1,12 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: transmutation
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
  - nitemaeric
8
8
  - borrabeer
9
- autorequire:
9
+ autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
12
  date: 2024-06-05 00:00:00.000000000 Z
@@ -25,7 +25,7 @@ dependencies:
25
25
  - - "~>"
26
26
  - !ruby/object:Gem::Version
27
27
  version: 2.6.15
28
- description:
28
+ description:
29
29
  email:
30
30
  - daniel@spellbook.tech
31
31
  - worapath.pakkavesa@spellbook.tech
@@ -54,6 +54,7 @@ files:
54
54
  - lib/transmutation/serializer.rb
55
55
  - lib/transmutation/version.rb
56
56
  - sig/transmutation.rbs
57
+ - transmutation.gemspec
57
58
  homepage: https://github.com/spellbook-technology/transmutation
58
59
  licenses:
59
60
  - MIT
@@ -61,7 +62,7 @@ metadata:
61
62
  homepage_uri: https://github.com/spellbook-technology/transmutation
62
63
  source_code_uri: https://github.com/spellbook-technology/transmutation
63
64
  changelog_uri: https://github.com/spellbook-technology/transmutation/CHANGELOG.md
64
- post_install_message:
65
+ post_install_message:
65
66
  rdoc_options: []
66
67
  require_paths:
67
68
  - lib
@@ -76,8 +77,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
76
77
  - !ruby/object:Gem::Version
77
78
  version: '0'
78
79
  requirements: []
79
- rubygems_version: 3.2.33
80
- signing_key:
80
+ rubygems_version: 3.5.9
81
+ signing_key:
81
82
  specification_version: 4
82
83
  summary: Ruby JSON serialization library
83
84
  test_files: []