ticket_sharing 2.1.0 → 2.1.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 +4 -4
- data/Readme.md +17 -2
- data/lib/ticket_sharing/version.rb +1 -1
- metadata +3 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fada1f0777c300959fd59727cd3e59e6ca0cf59f6563b37576d9c8955aa4fd6f
|
4
|
+
data.tar.gz: 82be238bf0c5cdf2c5b2982eeb9abe483be06581f67cf666be29dfef5dad1ded
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ed97f641bf8503737a3c3d79c0f97407725c06b74f483cc2c9681486257f571ec07b33dae887403e9193c489725e88a72d6dcb6741b0d32800ec3ca7d34e18b1
|
7
|
+
data.tar.gz: 4617b97e830fad2801493df2177642ab032baa8cf1f622db6b4e17b7d3c072ea84e378dd259a4f4bc3cadbe2aae3ab19ca2cc532a182290656e7be5c24119b2c
|
data/Readme.md
CHANGED
@@ -33,8 +33,20 @@ A ruby implementation of the [Networked Help Desk] [1] API
|
|
33
33
|
* [Submit an issue] [2]
|
34
34
|
* Fork the project and submit a pull request
|
35
35
|
|
36
|
-
|
37
|
-
|
36
|
+
### Releasing a new version
|
37
|
+
A new version is published to RubyGems.org every time a change to `version.rb` is pushed to the `main` branch.
|
38
|
+
In short, follow these steps:
|
39
|
+
1. Update `version.rb`,
|
40
|
+
2. run `bundle lock` to update `Gemfile.lock`,
|
41
|
+
3. merge this change into `main`, and
|
42
|
+
4. look at [the action](https://github.com/zendesk/ticket_sharing/actions/workflows/publish.yml) for output.
|
43
|
+
|
44
|
+
To create a pre-release from a non-main branch:
|
45
|
+
1. change the version in `version.rb` to something like `1.2.0.pre.1` or `2.0.0.beta.2`,
|
46
|
+
2. push this change to your branch,
|
47
|
+
3. go to [Actions → “Publish to RubyGems.org” on GitHub](https://github.com/zendesk/ticket_sharing/actions/workflows/publish.yml),
|
48
|
+
4. click the “Run workflow” button,
|
49
|
+
5. pick your branch from a dropdown.
|
38
50
|
|
39
51
|
## Author
|
40
52
|
[Josh Lubaway](https://github.com/jish)<br/>
|
@@ -51,3 +63,6 @@ http://www.apache.org/licenses/LICENSE-2.0
|
|
51
63
|
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed
|
52
64
|
on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific
|
53
65
|
language governing permissions and limitations under the License.
|
66
|
+
|
67
|
+
[1]: http://networkedhelpdesk.org/api/ "Networked Help Desk"
|
68
|
+
[2]: https://github.com/zendesk/ticket_sharing/issues "Issues"
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ticket_sharing
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.1.
|
4
|
+
version: 2.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Josh Lubaway
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: rake
|
@@ -105,7 +104,6 @@ homepage: https://github.com/zendesk/ticket_sharing
|
|
105
104
|
licenses:
|
106
105
|
- Apache License Version 2.0
|
107
106
|
metadata: {}
|
108
|
-
post_install_message:
|
109
107
|
rdoc_options:
|
110
108
|
- "--main"
|
111
109
|
- Readme.md
|
@@ -122,8 +120,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
122
120
|
- !ruby/object:Gem::Version
|
123
121
|
version: '0'
|
124
122
|
requirements: []
|
125
|
-
rubygems_version: 3.
|
126
|
-
signing_key:
|
123
|
+
rubygems_version: 3.6.7
|
127
124
|
specification_version: 4
|
128
125
|
summary: Ticket sharing
|
129
126
|
test_files: []
|