punk 0.1.3 → 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 +4 -4
- data/.github/workflows/ship.yml +3 -1
- data/README.md +2 -3
- data/VERSION +1 -1
- data/punk.gemspec +3 -3
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bcd01e2d794110d209b1c95d064a096126e7d1ac7ef32a96051646c30a530345
|
|
4
|
+
data.tar.gz: 03be67755ef1ffa1059e7fc829810760a3363bc331ddf5cfec91ffdbe96b64d4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e8c2b7ca00ad06821ed88da9c3c961799d0410f920b9391be2ea4dbe7dad70cc11562512324a689457d7e82ea644371e276c520646ede3b401eddadd0a1b55da
|
|
7
|
+
data.tar.gz: f1d10c98f46bf408b86a55688007e4c40c209af1806a7e1f01a401314eedce151385a8c62f2b88059aa01802b642a09adbfbeba58ee365bae584b140d5591f80
|
data/.github/workflows/ship.yml
CHANGED
|
@@ -21,6 +21,8 @@ jobs:
|
|
|
21
21
|
touch $HOME/.gem/credentials
|
|
22
22
|
chmod 0600 $HOME/.gem/credentials
|
|
23
23
|
printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
|
|
24
|
-
bundle exec rake
|
|
24
|
+
bundle exec rake gemspec
|
|
25
|
+
bundle exec rake build
|
|
26
|
+
gem push pkg/*
|
|
25
27
|
env:
|
|
26
28
|
GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_AUTH_TOKEN}}"
|
data/README.md
CHANGED
|
@@ -9,9 +9,8 @@ Punk! is an omakase web framework for rapid prototyping.
|
|
|
9
9
|
## Release Process
|
|
10
10
|
|
|
11
11
|
1. `rake version:bump:whatever`
|
|
12
|
-
2. `rake
|
|
13
|
-
3.
|
|
14
|
-
4. Create new release on GitHub to trigger ship workflow
|
|
12
|
+
2. `rake git:release BRANCH=main`
|
|
13
|
+
3. Create new release on GitHub to trigger ship workflow
|
|
15
14
|
|
|
16
15
|
## Copyright
|
|
17
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.4
|
data/punk.gemspec
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Juwelier::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: punk 0.1.
|
|
5
|
+
# stub: punk 0.1.4 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "punk".freeze
|
|
9
|
-
s.version = "0.1.
|
|
9
|
+
s.version = "0.1.4"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.require_paths = ["lib".freeze]
|
|
@@ -100,7 +100,7 @@ Gem::Specification.new do |s|
|
|
|
100
100
|
s.homepage = "https://github.com/kranzky/punk".freeze
|
|
101
101
|
s.licenses = ["Unlicense".freeze]
|
|
102
102
|
s.required_ruby_version = Gem::Requirement.new(">= 2.1".freeze)
|
|
103
|
-
s.rubygems_version = "
|
|
103
|
+
s.rubygems_version = "2.7.6.2".freeze
|
|
104
104
|
s.summary = "Punk! is an omakase web framework for rapid prototyping.".freeze
|
|
105
105
|
|
|
106
106
|
if s.respond_to? :specification_version then
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: punk
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Lloyd Kranzky
|
|
@@ -758,7 +758,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
758
758
|
- !ruby/object:Gem::Version
|
|
759
759
|
version: '0'
|
|
760
760
|
requirements: []
|
|
761
|
-
|
|
761
|
+
rubyforge_project:
|
|
762
|
+
rubygems_version: 2.7.6.2
|
|
762
763
|
signing_key:
|
|
763
764
|
specification_version: 4
|
|
764
765
|
summary: Punk! is an omakase web framework for rapid prototyping.
|