heroku-review-apps-manager 0.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 2bcfc7d7fcf1e47de4940cd7b4c83e79f424edc7e9a34c6e7384e356c60ee0cd
4
+ data.tar.gz: 9c7249cd1a08a6a4d3fb28b0f892f1531cf0eebb763bc7dc08c7b04fa2492633
5
+ SHA512:
6
+ metadata.gz: 9440388b83d8baf85653cb0a5f7d0b893b36ff9a28936e5c5ec148a606292cb55fb6c24a532d319a2316a088c9b15aa7af92eb4373ea06f27066ab879d3a09fe
7
+ data.tar.gz: cf836d574ed9a6ceadceaffc54575c8376f32f67e21fd1e0fd5414f6b69b948c92d32a843fbd0cdf344cd86f6dbed8daf3b90e1c2c15629e7bc52a8321a0d3c7
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,17 @@
1
+ AllCops:
2
+ TargetRubyVersion: 3.0
3
+
4
+ Style/StringLiterals:
5
+ Enabled: true
6
+ EnforcedStyle: double_quotes
7
+
8
+ Style/StringLiteralsInInterpolation:
9
+ Enabled: true
10
+ EnforcedStyle: double_quotes
11
+
12
+ Layout/LineLength:
13
+ Max: 120
14
+
15
+ Layout/LineLength:
16
+ Exclude:
17
+ - "heroku-review-apps-manager.gemspec"
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2026-01-12
4
+
5
+ - Initial release
@@ -0,0 +1,84 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
6
+
7
+ We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
8
+
9
+ ## Our Standards
10
+
11
+ Examples of behavior that contributes to a positive environment for our community include:
12
+
13
+ * Demonstrating empathy and kindness toward other people
14
+ * Being respectful of differing opinions, viewpoints, and experiences
15
+ * Giving and gracefully accepting constructive feedback
16
+ * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
17
+ * Focusing on what is best not just for us as individuals, but for the overall community
18
+
19
+ Examples of unacceptable behavior include:
20
+
21
+ * The use of sexualized language or imagery, and sexual attention or
22
+ advances of any kind
23
+ * Trolling, insulting or derogatory comments, and personal or political attacks
24
+ * Public or private harassment
25
+ * Publishing others' private information, such as a physical or email
26
+ address, without their explicit permission
27
+ * Other conduct which could reasonably be considered inappropriate in a
28
+ professional setting
29
+
30
+ ## Enforcement Responsibilities
31
+
32
+ Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
33
+
34
+ Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
35
+
36
+ ## Scope
37
+
38
+ This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
39
+
40
+ ## Enforcement
41
+
42
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at kakudou3@gmail.com. All complaints will be reviewed and investigated promptly and fairly.
43
+
44
+ All community leaders are obligated to respect the privacy and security of the reporter of any incident.
45
+
46
+ ## Enforcement Guidelines
47
+
48
+ Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
49
+
50
+ ### 1. Correction
51
+
52
+ **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
53
+
54
+ **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
55
+
56
+ ### 2. Warning
57
+
58
+ **Community Impact**: A violation through a single incident or series of actions.
59
+
60
+ **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
61
+
62
+ ### 3. Temporary Ban
63
+
64
+ **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
65
+
66
+ **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
67
+
68
+ ### 4. Permanent Ban
69
+
70
+ **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
71
+
72
+ **Consequence**: A permanent ban from any sort of public interaction within the community.
73
+
74
+ ## Attribution
75
+
76
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0,
77
+ available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
78
+
79
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).
80
+
81
+ [homepage]: https://www.contributor-covenant.org
82
+
83
+ For answers to common questions about this code of conduct, see the FAQ at
84
+ https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2026 kakudooo
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/README.md ADDED
@@ -0,0 +1,121 @@
1
+ # heroku-review-apps-manager <a href="https://badge.fury.io/rb/heroku-review-apps-manager"><img src="https://badge.fury.io/rb/heroku-review-apps-manager.svg" alt="Gem Version" height="18"></a>
2
+
3
+ A command-line tool to manage Heroku Review Apps. This gem provides an easy way to list, create, and delete Heroku review apps associated with GitHub pull requests.
4
+
5
+ ## Installation
6
+
7
+ Install the gem by executing:
8
+
9
+ ```bash
10
+ $ gem install heroku-review-apps-manager
11
+ ```
12
+
13
+ Or add to your application's Gemfile:
14
+
15
+ ```ruby
16
+ gem 'heroku-review-apps-manager'
17
+ ```
18
+
19
+ And then execute:
20
+
21
+ ```bash
22
+ $ bundle install
23
+ ```
24
+
25
+ ## Configuration
26
+
27
+ This tool requires the following environment variables to be set:
28
+
29
+ ### `HEROKU_REVIEW_APPS_MANAGER_HEROKU_API_KEY`
30
+
31
+ Your Heroku API key for authentication. You can find your API key in your [Heroku Account Settings](https://dashboard.heroku.com/account).
32
+
33
+ ```bash
34
+ export HEROKU_REVIEW_APPS_MANAGER_HEROKU_API_KEY=your_heroku_api_key
35
+ ```
36
+
37
+ ### `HEROKU_REVIEW_APPS_MANAGER_GITHUB_TOKEN`
38
+
39
+ Your GitHub personal access token (required for creating review apps). You can create a token in your [GitHub Settings](https://github.com/settings/tokens).
40
+
41
+ ```bash
42
+ export HEROKU_REVIEW_APPS_MANAGER_GITHUB_TOKEN=your_github_token
43
+ ```
44
+
45
+ ## Usage
46
+
47
+ ### List review apps
48
+
49
+ List all review apps for a given pipeline:
50
+
51
+ ```bash
52
+ $ heroku-review-apps-manager list_app PIPELINE_NAME
53
+ ```
54
+
55
+ With JSON output:
56
+
57
+ ```bash
58
+ $ heroku-review-apps-manager list_app PIPELINE_NAME --json
59
+ ```
60
+
61
+ ### Create a review app
62
+
63
+ Create a review app for a specific branch and pull request:
64
+
65
+ ```bash
66
+ $ heroku-review-apps-manager create_app PIPELINE_NAME GITHUB_ORG REPOSITORY BRANCH
67
+ ```
68
+
69
+ Example:
70
+
71
+ ```bash
72
+ $ heroku-review-apps-manager create_app my-pipeline myorg myrepo feature-branch
73
+ ```
74
+
75
+ With JSON output:
76
+
77
+ ```bash
78
+ $ heroku-review-apps-manager create_app PIPELINE_NAME GITHUB_ORG REPOSITORY BRANCH --json
79
+ ```
80
+
81
+ ### Delete a review app
82
+
83
+ Delete a review app for a specific branch:
84
+
85
+ ```bash
86
+ $ heroku-review-apps-manager delete_app PIPELINE_NAME BRANCH
87
+ ```
88
+
89
+ Example:
90
+
91
+ ```bash
92
+ $ heroku-review-apps-manager delete_app my-pipeline feature-branch
93
+ ```
94
+
95
+ With JSON output:
96
+
97
+ ```bash
98
+ $ heroku-review-apps-manager delete_app PIPELINE_NAME BRANCH --json
99
+ ```
100
+
101
+ ## Development
102
+
103
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
104
+
105
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
106
+
107
+ ## Contributing
108
+
109
+ Bug reports and pull requests are welcome on GitHub at https://github.com/kakudou3/heroku-review-apps-manager. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/kakudou3/heroku-review-apps-manager/blob/main/CODE_OF_CONDUCT.md).
110
+
111
+ ## License
112
+
113
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
114
+
115
+ ## Code of Conduct
116
+
117
+ Everyone interacting in the heroku-review-apps-manager project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/kakudou3/heroku-review-apps-manager/blob/main/CODE_OF_CONDUCT.md).
118
+
119
+ ## Author
120
+
121
+ kakudooo <kakudou3@gmail.com>
data/Rakefile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rspec/core/rake_task"
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+
8
+ require "rubocop/rake_task"
9
+
10
+ RuboCop::RakeTask.new
11
+
12
+ task default: %i[spec rubocop]
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require "heroku/review/apps/manager"
5
+
6
+ Heroku::Review::Apps::Manager::Cli.start
@@ -0,0 +1,162 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "heroku/review/apps/manager"
4
+ require "thor"
5
+ require "platform-api"
6
+ require "octokit"
7
+ require "cgi"
8
+ require "faraday"
9
+
10
+ # rubocop:disable Style/Documentation, Metrics/ClassLength, Metrics/MethodLength, Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity
11
+ module Heroku
12
+ module Review
13
+ module Apps
14
+ module Manager
15
+ class Cli < Thor
16
+ desc "list_app", "List all review apps"
17
+ option :json, type: :boolean, default: false
18
+ def list_app(pipeline_name)
19
+ platform_api = PlatformAPI.connect_oauth(ENV["HEROKU_REVIEW_APPS_MANAGER_HEROKU_API_KEY"])
20
+
21
+ begin
22
+ pipeline = platform_api.pipeline.info(pipeline_name)
23
+ rescue Excon::Error::NotFound
24
+ say "Pipleline does not exists." and return
25
+ end
26
+
27
+ result = platform_api.review_app.list(pipeline["id"])
28
+
29
+ if options[:json]
30
+ say result.to_json
31
+ else
32
+ headers = %w[ID PR Branch Status]
33
+ body = result.map do |app|
34
+ [app["id"], "##{app["pr_number"]}", app["branch"], app["status"]]
35
+ end
36
+ print_table([
37
+ headers,
38
+ *body
39
+ ])
40
+ end
41
+ end
42
+
43
+ desc "delete_app", "Delete review apps"
44
+ option :json, type: :boolean, default: false
45
+ def delete_app(pipeline_name, branch)
46
+ platform_api = PlatformAPI.connect_oauth(ENV["HEROKU_REVIEW_APPS_MANAGER_HEROKU_API_KEY"])
47
+
48
+ begin
49
+ pipeline = platform_api.pipeline.info(pipeline_name)
50
+ rescue Excon::Error::NotFound
51
+ say "Pipleline does not exists." and return
52
+ end
53
+
54
+ begin
55
+ apps = platform_api.review_app.list(pipeline["id"])
56
+ rescue Excon::Error::NotFound
57
+ say "Review app not exists." and return
58
+ end
59
+
60
+ app = apps.filter { |app| app["branch"] == branch }.first
61
+
62
+ say "Review app not exists." and return if app.nil?
63
+
64
+ result = platform_api.review_app.delete(app["id"])
65
+
66
+ if options[:json]
67
+ say result.to_json
68
+ else
69
+ headers = %w[ID PR Branch]
70
+ body = [result["id"], "##{result["pr_number"]}", result["branch"]]
71
+ print_table([
72
+ headers,
73
+ body
74
+ ])
75
+ end
76
+ end
77
+
78
+ desc "create_app", "Create review app"
79
+ option :json, type: :boolean, default: false
80
+ def create_app(pipeline_name, org, repository, branch)
81
+ platform_api = PlatformAPI.connect_oauth(ENV["HEROKU_REVIEW_APPS_MANAGER_HEROKU_API_KEY"])
82
+ octokit = Octokit::Client.new(access_token: ENV["HEROKU_REVIEW_APPS_MANAGER_GITHUB_TOKEN"])
83
+
84
+ pipeline = platform_api.pipeline.info(pipeline_name)
85
+ pipeline_id = pipeline["id"]
86
+
87
+ github_archive_link = octokit.archive_link("#{org}/#{repository}", ref: branch)
88
+
89
+ pull_requests = octokit.pull_requests(
90
+ "#{org}/#{repository}",
91
+ state: "all",
92
+ head: "#{org}:#{branch}"
93
+ )
94
+ pull_request = pull_requests.first
95
+
96
+ apps = platform_api.review_app.list(pipeline_id)
97
+ app = apps.filter { |app| app["branch"] == branch }.first
98
+
99
+ say "Review app already exists." and return unless app.nil?
100
+
101
+ begin
102
+ review_app = platform_api.review_app.create(
103
+ branch: branch,
104
+ pipeline: pipeline_id,
105
+ source_blob: { url: github_archive_link, version: "v1.0.0" },
106
+ pr_number: pull_request[:number]
107
+ )
108
+ rescue Excon::Error::Conflict
109
+ say "Review app already exists." and return
110
+ end
111
+
112
+ last_status = nil
113
+ loop do
114
+ review_app = platform_api.review_app.get_review_app(review_app["id"])
115
+
116
+ say "Status: #{review_app["status"]}"
117
+
118
+ if %w[created errored].include?(review_app["status"])
119
+ last_status = review_app["status"]
120
+ break
121
+ end
122
+
123
+ sleep 30
124
+ end
125
+
126
+ say "Review app was changed to errored status." and return if last_status == "errored"
127
+
128
+ app_id = review_app["app"]["id"]
129
+ app_info = platform_api.app.info(app_id)
130
+
131
+ config_vars = platform_api.config_var.info_for_app(app_id)
132
+ database_url = config_vars["DATABASE_URL"]
133
+ uri = URI.parse(database_url)
134
+
135
+ if options[:json]
136
+ result = {
137
+ url: app_info["web_url"],
138
+ db: {
139
+ host: uri.host,
140
+ port: uri.port,
141
+ name: uri.path[1..],
142
+ user: uri.user,
143
+ password: uri.password
144
+ }
145
+ }
146
+ say result.to_json
147
+ else
148
+ print_table([
149
+ ["URL", "DB Host", "DB Port", "DB Name", "DB User",
150
+ "DB Password", "DB Scheme"],
151
+ [app_info["web_url"], uri.host, uri.port, uri.path[1..], uri.user, uri.password,
152
+ uri.scheme]
153
+ ])
154
+
155
+ end
156
+ end
157
+ end
158
+ end
159
+ end
160
+ end
161
+ end
162
+ # rubocop:enable Style/Documentation, Metrics/ClassLength, Metrics/MethodLength, Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Heroku
4
+ module Review
5
+ module Apps
6
+ module Manager
7
+ VERSION = "0.1.0"
8
+ end
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "manager/version"
4
+ require_relative "manager/cli"
5
+
6
+ module Heroku
7
+ module Review
8
+ module Apps
9
+ module Manager
10
+ class Error < StandardError; end
11
+ end
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,10 @@
1
+ module Heroku
2
+ module Review
3
+ module Apps
4
+ module Manager
5
+ VERSION: String
6
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
7
+ end
8
+ end
9
+ end
10
+ end
metadata ADDED
@@ -0,0 +1,159 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: heroku-review-apps-manager
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - kakudooo
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2026-01-24 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: faraday
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: octokit
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: platform-api
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: thor
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rake
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rspec
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: rubocop
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ description: heroku-review-apps-manager provides a command-line interface to list,
112
+ create, and delete Heroku review apps associated with GitHub pull requests. It simplifies
113
+ the management of review apps in your CI/CD pipeline.
114
+ email:
115
+ - kakudou3@gmail.com
116
+ executables:
117
+ - heroku-review-apps-manager
118
+ extensions: []
119
+ extra_rdoc_files: []
120
+ files:
121
+ - ".rspec"
122
+ - ".rubocop.yml"
123
+ - CHANGELOG.md
124
+ - CODE_OF_CONDUCT.md
125
+ - LICENSE.txt
126
+ - README.md
127
+ - Rakefile
128
+ - exe/heroku-review-apps-manager
129
+ - lib/heroku/review/apps/manager.rb
130
+ - lib/heroku/review/apps/manager/cli.rb
131
+ - lib/heroku/review/apps/manager/version.rb
132
+ - sig/heroku/review/apps/manager.rbs
133
+ homepage: https://github.com/kakudou3/heroku-review-apps-manager
134
+ licenses:
135
+ - MIT
136
+ metadata:
137
+ homepage_uri: https://github.com/kakudou3/heroku-review-apps-manager
138
+ source_code_uri: https://github.com/kakudou3/heroku-review-apps-manager
139
+ changelog_uri: https://github.com/kakudou3/heroku-review-apps-manager/blob/main/CHANGELOG.md
140
+ post_install_message:
141
+ rdoc_options: []
142
+ require_paths:
143
+ - lib
144
+ required_ruby_version: !ruby/object:Gem::Requirement
145
+ requirements:
146
+ - - ">="
147
+ - !ruby/object:Gem::Version
148
+ version: 3.0.0
149
+ required_rubygems_version: !ruby/object:Gem::Requirement
150
+ requirements:
151
+ - - ">="
152
+ - !ruby/object:Gem::Version
153
+ version: '0'
154
+ requirements: []
155
+ rubygems_version: 3.5.6
156
+ signing_key:
157
+ specification_version: 4
158
+ summary: A CLI tool to manage Heroku Review Apps
159
+ test_files: []