dlinked 0.1.1 → 0.1.4

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: 724380c942032cdc4308e6457a68996d0cffd35681a8a2f869e4f7e9f4938d59
4
- data.tar.gz: 073d48b50858323574657b66386f14c3ec7137857a9dc16f3879579bcc09b002
3
+ metadata.gz: ef940eb0029b6e467c94081f4bff4bf1b62bed8d8f3311c85e023002a766701d
4
+ data.tar.gz: d628d0fe0af53206b2178f2cbd21f3d272d23189e291ade9784e3c45c7b33eb9
5
5
  SHA512:
6
- metadata.gz: 260d3fefb326f3e41243b16875b38880d599706a3bcc497dd18583ddacf232700aa1e14e06033ad2bc21f01869c4c67df6fb29c5d5395a0e1fef4c26b591ab26
7
- data.tar.gz: 79c0f06249f6c3df620248d4114ab3b18bdb3110c8c9e0284eee945362b5cc698c8848b5464e505ba4590ae64c93885086d6f350799f90f3ef27cd9a4d9f9ba6
6
+ metadata.gz: 1bc4186e90de01260385e224bc12ebe71550f18f973c897c69b545007eecda94cbef52019e720db70dd4adf5c280e020b1f2382c8250a1ac9937643fc4cd49cf
7
+ data.tar.gz: a37e7d7ff0355fbd1a2ce94c1f0e4668c729eb77185b9b53d9cc3e14527b2f7d46210afe71a234a6c7cb9773a3becb145ee76bea967b38be0ac90556dfd512ee
@@ -104,18 +104,21 @@ jobs:
104
104
  with:
105
105
  ruby-version: 3.3 # Use the latest version for publishing
106
106
  bundler-cache: false # We only need the runtime
107
-
107
+ - name: Setup RubyGems Authentication
108
+ uses: rubygems/configure-rubygems-credentials@v1
109
+ with:
110
+ api_key: ${{ secrets.RUBYGEMS_API_KEY }}
108
111
  - name: Download Gem Artifact
109
112
  uses: actions/download-artifact@v4
110
113
  with:
111
114
  name: dlinked-gem
112
115
  path: pkg/
113
116
 
114
- - name: Set up RubyGems credentials
115
- run: |
116
- mkdir -p ~/.gem
117
- echo ":rubygems_api_key: ${{ secrets.RUBYGEMS_API_KEY }}" > ~/.gem/credentials
118
- chmod 0600 ~/.gem/credentials
117
+ # - name: Set up RubyGems credentials
118
+ # run: |
119
+ # mkdir -p ~/.gem
120
+ # echo ":rubygems_api_key: ${{ secrets.RUBYGEMS_API_KEY }}" > ~/.gem/credentials
121
+ # chmod 0600 ~/.gem/credentials
119
122
 
120
123
  - name: Push Gem to RubyGems.org
121
124
  # The gem file is expected to be in the 'pkg/' directory
data/CHANGELOG.md ADDED
File without changes
data/dlinked.gemspec CHANGED
@@ -13,7 +13,11 @@ Gem::Specification.new do |spec|
13
13
  spec.description = "Provides a native Doubly Linked List data structure in Ruby, focusing on O(1) performance for head/tail operations and standard Enumerable compatibility."
14
14
  spec.homepage = "https://github.com/danielefrisanco/dlinked"
15
15
  spec.license = "MIT"
16
-
16
+ spec.metadata["homepage_uri"] = spec.homepage
17
+ spec.metadata["source_code_uri"] = 'https://github.com/danielefrisanco/dlinked'
18
+ spec.metadata["bug_tracker_uri"] = 'https://github.com/danielefrisanco/dlinked/issues'
19
+ spec.metadata["documentation_uri"] = 'https://danielefrisanco.github.io/dlinked/'
20
+ spec.metadata["changelog_uri"] = 'https://github.com/danielefrisanco/dlinked/blob/main/CHANGELOG.md'
17
21
  spec.required_ruby_version = ">= 2.7.0"
18
22
 
19
23
  # --- Files to Include in the Gem ---
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DLinked
4
- VERSION = '0.1.1'
4
+ VERSION = '0.1.4'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dlinked
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniele Frisanco
@@ -119,6 +119,7 @@ files:
119
119
  - ".github/workflows/release.yml"
120
120
  - ".gitignore"
121
121
  - ".rubocop.yml"
122
+ - CHANGELOG.md
122
123
  - Gemfile
123
124
  - LICENSE.txt
124
125
  - README.md
@@ -133,7 +134,12 @@ files:
133
134
  homepage: https://github.com/danielefrisanco/dlinked
134
135
  licenses:
135
136
  - MIT
136
- metadata: {}
137
+ metadata:
138
+ homepage_uri: https://github.com/danielefrisanco/dlinked
139
+ source_code_uri: https://github.com/danielefrisanco/dlinked
140
+ bug_tracker_uri: https://github.com/danielefrisanco/dlinked/issues
141
+ documentation_uri: https://danielefrisanco.github.io/dlinked/
142
+ changelog_uri: https://github.com/danielefrisanco/dlinked/blob/main/CHANGELOG.md
137
143
  post_install_message:
138
144
  rdoc_options: []
139
145
  require_paths: