bridgetown-foundation 2.0.0.beta1 → 2.0.0.beta2

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: 00a2692340742728b14ce61beb79b3181409376be73f56c21a60db4e3d28c3ee
4
- data.tar.gz: fc2ae32d07c3f218d98ed6409abab7431e6927078005c6dc4dbd158d054ce4c5
3
+ metadata.gz: 939f9fde84bd7396d24375d071d2888c55bf877960949211a2866c029ecb74f2
4
+ data.tar.gz: 6e9f3bf191c6eb3260f4b002379d89b1a5e2acf85f4fbbca9bc1d033514d86f4
5
5
  SHA512:
6
- metadata.gz: 82722f2c1d63bbc05f2d8de93290999316162c0de9f55d91c24fbe831ee67a7b0335c1e3c91846038518b7d944e413c6b1be795fcead56e53815b068c2c2de72
7
- data.tar.gz: de9adb2dc49ed52b36fe7f61e7f10f29e30b8b12fced50cd8e2cc678b563f11001c79d038fead8a786898963c8be45352b85207a14aa65be21423abeecc756f6
6
+ metadata.gz: 186d65831200e1a22cb59017daf00a6f3aa7e1344e39a0a2256cc4662e15be012cc69b8cd3800bbda179594161816bad6c17ab31d69b4f4e77f1cbda2ff527ab
7
+ data.tar.gz: aa6bcab32d02c79f739a0f847fe1c12197bd5565f2f716346bd534ae969dcb7725fecb056098e076d379791b2cbe798925b7128c89fc1e5cb50d50f72df08a20
@@ -1,10 +1,10 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require_relative "lib/bridgetown/foundation/version"
3
+ require_relative "lib/bridgetown/version"
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "bridgetown-foundation"
7
- spec.version = Bridgetown::Foundation::VERSION
7
+ spec.version = Bridgetown::VERSION
8
8
  spec.author = "Bridgetown Team"
9
9
  spec.email = "maintainers@bridgetownrb.com"
10
10
  spec.summary = "Ruby language extensions and other utilities useful for the Bridgetown ecosystem"
@@ -0,0 +1,6 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Bridgetown
4
+ VERSION = "2.0.0.beta2"
5
+ CODE_NAME = "(TBD!)"
6
+ end
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require "bridgetown/foundation/version"
3
+ require "bridgetown/version"
4
4
  require "hash_with_dot_access"
5
5
  require "inclusive"
6
6
  require "zeitwerk"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bridgetown-foundation
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0.beta1
4
+ version: 2.0.0.beta2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bridgetown Team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-08-02 00:00:00.000000000 Z
11
+ date: 2024-08-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: hash_with_dot_access
@@ -73,7 +73,7 @@ files:
73
73
  - lib/bridgetown/foundation/refine_ext/module.rb
74
74
  - lib/bridgetown/foundation/refine_ext/object.rb
75
75
  - lib/bridgetown/foundation/refine_ext/string.rb
76
- - lib/bridgetown/foundation/version.rb
76
+ - lib/bridgetown/version.rb
77
77
  homepage: https://github.com/bridgetownrb/bridgetown/tree/main/bridgetown-foundation
78
78
  licenses:
79
79
  - MIT
@@ -1,8 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Bridgetown
4
- module Foundation
5
- # TODO: should we define versions here now and pull it within Core?
6
- VERSION = "2.0.0.beta1"
7
- end
8
- end