hephaestus 0.5.0 → 0.5.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/lib/hephaestus/exit_on_failure.rb +1 -1
- data/lib/hephaestus/version.rb +1 -1
- data/templates/app/controllers/concerns/authable.rb +1 -1
- data/templates/app/services/yetto_service.rb +1 -1
- data/templates/lib/tasks/test_tasks.rake +1 -1
- data/templates/test/test_helper.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a6ea72738e1e92fb2cde19166a290573e1a4f3d51f4889c13fcfb0530998ff28
|
4
|
+
data.tar.gz: 6a5980d8b598044f144feda0aae7a74cafd156349fcd7871ff1b431c21fad32c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5b901a9802f9b40d387ee9f476583e79c3e04fd8f0f324497dd27dfe67464d408cc694ce0875aefe36ab1dabed4f1e7ceff25ce5f2a672868590da1893b2099a
|
7
|
+
data.tar.gz: 48c94b50e1cf0420e91c69d1c2c17e8d5d96e4aead81f43a284d6f6999f31910cf29b9b9b349998c89403839eb559705a93337288637764292e3fc5ae1f7b9c6
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,9 @@
|
|
1
|
+
## [v0.5.0] - 13-10-2023
|
2
|
+
## What's Changed
|
3
|
+
* More edits by @gjtorikian in https://github.com/yettoapp/hephaestus/pull/11
|
4
|
+
|
5
|
+
|
6
|
+
**Full Changelog**: https://github.com/yettoapp/hephaestus/compare/v0.4.0...v0.5.0
|
1
7
|
## [v0.4.0] - 29-09-2023
|
2
8
|
## What's Changed
|
3
9
|
* Yet more changes by @gjtorikian in https://github.com/yettoapp/hephaestus/pull/10
|
data/lib/hephaestus/version.rb
CHANGED
@@ -17,7 +17,7 @@ module Authable
|
|
17
17
|
state = params.fetch(:state, "")
|
18
18
|
_, _, gh_nonce, _, _, _, _ = parse_state(state)
|
19
19
|
|
20
|
-
return if ActiveSupport::SecurityUtils.secure_compare((gh_nonce || ""), PLUG_APP_NONCE)
|
20
|
+
return false if ActiveSupport::SecurityUtils.secure_compare((gh_nonce || ""), PLUG_APP_NONCE)
|
21
21
|
|
22
22
|
self.status = PlugApp::HTTP::BAD_REQUEST_I
|
23
23
|
self.response_body = ::ErrorSerializer.format(PlugApp::HTTP::BAD_REQUEST)
|
@@ -8,7 +8,7 @@ class YettoService
|
|
8
8
|
|
9
9
|
# explicitly different than what's in environment.rb, because local
|
10
10
|
# Yetto expects HTTP; environment.rb can use HTTPS because it passes through ngrok.io
|
11
|
-
PROTOCOL = Rails.env.development? ? "http
|
11
|
+
PROTOCOL = Rails.env.development? ? "http" : "https"
|
12
12
|
YETTO_API_VERSION_TLD = "#{PROTOCOL}://#{YETTO_API_TLD}/#{YETTO_API_VERSION}"
|
13
13
|
JWT_ALGORITHM = "RS256"
|
14
14
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hephaestus
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Garen Torikian
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-10-
|
11
|
+
date: 2023-10-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -251,7 +251,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
251
251
|
- !ruby/object:Gem::Version
|
252
252
|
version: 3.4.7
|
253
253
|
requirements: []
|
254
|
-
rubygems_version: 3.4.
|
254
|
+
rubygems_version: 3.4.21
|
255
255
|
signing_key:
|
256
256
|
specification_version: 4
|
257
257
|
summary: Generate a Rails app that can be used to create plugs for Yetto.
|