flame_server_toys 1.0.0 → 1.1.0

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: 271fc71fbb15d685ca352773deccf1be2963f594654bc8c90d0ac90c6673b93f
4
- data.tar.gz: 1ea04f7517307fdd77dc43fac99fe891401894c0ecd167388bcbb4415137f1b8
3
+ metadata.gz: c0172d13000ddec718532811a7121c26b5673bd7b698da2fab5c087123e6da53
4
+ data.tar.gz: e38e0ea64044d454b08c8ece000a161388d5bf181440b523c8836e88c09527fb
5
5
  SHA512:
6
- metadata.gz: 78793d8b1628ac5f486c8bf16dada10503aab7574c1a79e8eb6ba43049112e7ccb8532c14774766360aa1cd9cdf3b8223aa0be5d47240106940838382d1a1543
7
- data.tar.gz: d38a681c672318297cc409f721c7085d92ec8c41a043b4737108dc428b2dd9d68d3490e425a3b5a72e0c046abfaace5cb6b1b6e7b38c1fcd56d0abb42e952617
6
+ metadata.gz: ae918e76b5f5c2edfc00be699d915aa2fc2a652215ca0e59aa5b07d7fd85d41742e0efab52886f3daecd00d53d1832ecc513f4fdd70e589b31678ee8c5a74fb6
7
+ data.tar.gz: 507fc6fd43aed9107e3bbce1d79512bf516618e78c43933e7b536c8a4f8df4deeff55cea49ece0cfd4f2a322bca5541f5a9c8470708588bbb9610c5cb0ec684c
data/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 1.1.0 (2026-08-14)
6
+
7
+ * Update dependencies.
8
+ * Switch from Cirrus CI to GitHub Actions.
9
+ * Fix badges in README.
10
+
5
11
  ## 1.0.0 (2026-02-13)
6
12
 
7
13
  * Drop Ruby 2.7, 3.0 and 3.1 support.
data/README.md CHANGED
@@ -1,9 +1,8 @@
1
1
  # Flame Server Toys
2
2
 
3
3
  [![Gem](https://img.shields.io/gem/v/flame_server_toys.svg?style=flat-square)](https://rubygems.org/gems/flame_server_toys)
4
- [![Cirrus CI - Base Branch Build Status](https://img.shields.io/cirrus/github/AlexWayfer/flame_server_toys?style=flat-square)](https://cirrus-ci.com/github/AlexWayfer/flame_server_toys)
4
+ [![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/AlexWayfer/flame_server_toys/ci.yml?style=flat-square)](https://github.com/AlexWayfer/flame_server_toys/actions)
5
5
  [![Codecov branch](https://img.shields.io/codecov/c/github/AlexWayfer/flame_server_toys/main.svg?style=flat-square)](https://codecov.io/gh/AlexWayfer/flame_server_toys)
6
- [![Code Climate](https://img.shields.io/codeclimate/maintainability/AlexWayfer/flame_server_toys.svg?style=flat-square)](https://codeclimate.com/github/AlexWayfer/flame_server_toys)
7
6
  [![Depfu](https://img.shields.io/depfu/AlexWayfer/flame_server_toys?style=flat-square)](https://depfu.com/repos/github/AlexWayfer/flame_server_toys)
8
7
  [![Inline docs](https://inch-ci.org/github/AlexWayfer/flame_server_toys.svg?branch=main)](https://inch-ci.org/github/AlexWayfer/flame_server_toys)
9
8
  [![License](https://img.shields.io/github/license/AlexWayfer/flame_server_toys.svg?style=flat-square)](LICENSE.txt)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module FlameServerToys
4
- VERSION = '1.0.0'
4
+ VERSION = '1.1.0'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flame_server_toys
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alexander Popov
@@ -63,14 +63,14 @@ dependencies:
63
63
  requirements:
64
64
  - - "~>"
65
65
  - !ruby/object:Gem::Version
66
- version: 0.19.0
66
+ version: 0.22.0
67
67
  type: :runtime
68
68
  prerelease: false
69
69
  version_requirements: !ruby/object:Gem::Requirement
70
70
  requirements:
71
71
  - - "~>"
72
72
  - !ruby/object:Gem::Version
73
- version: 0.19.0
73
+ version: 0.22.0
74
74
  description: 'Toys for Flame web application server management, like start, stop,
75
75
  restart, etc.
76
76
 
@@ -99,8 +99,8 @@ licenses:
99
99
  - MIT
100
100
  metadata:
101
101
  bug_tracker_uri: https://github.com/AlexWayfer/flame_server_toys/issues
102
- changelog_uri: https://github.com/AlexWayfer/flame_server_toys/blob/v1.0.0/CHANGELOG.md
103
- documentation_uri: http://www.rubydoc.info/gems/flame_server_toys/1.0.0
102
+ changelog_uri: https://github.com/AlexWayfer/flame_server_toys/blob/v1.1.0/CHANGELOG.md
103
+ documentation_uri: http://www.rubydoc.info/gems/flame_server_toys/1.1.0
104
104
  homepage_uri: https://github.com/AlexWayfer/flame_server_toys
105
105
  rubygems_mfa_required: 'true'
106
106
  source_code_uri: https://github.com/AlexWayfer/flame_server_toys
@@ -122,7 +122,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
122
122
  - !ruby/object:Gem::Version
123
123
  version: '0'
124
124
  requirements: []
125
- rubygems_version: 4.0.3
125
+ rubygems_version: 4.0.16
126
126
  specification_version: 4
127
127
  summary: Toys for Flame web application server management
128
128
  test_files: []