hephaestus 0.2.3 → 0.3.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 +15 -0
- data/lib/hephaestus/version.rb +1 -1
- data/templates/.github/workflows/test.yml +11 -11
- data/templates/Gemfile.erb +1 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b95d21bfd57de5966b0e84d88b1405b86858be61eba98db2540cd4321169fe3c
|
4
|
+
data.tar.gz: a1a812f73c093ec210675c9f5f736893c0170aece8f06ce92cb43ff9df39467c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d967799d74078769fe825e5b03cfae506da34b023ff2e07edbe97ec91283592a50e664d280a1c2394ceefdd2047952ca36628e602789d224758d9bc91b45952b
|
7
|
+
data.tar.gz: '08804720c39e023bfd1abc2ac87de38fc9badf9509fc8b3f161f0528862653bfb18727da01aab24ce56012e4346ef6abb2f6f78746c1e681a533787b49df2bd0'
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,18 @@
|
|
1
|
+
## [v0.3.0] - 12-09-2023
|
2
|
+
## What's Changed
|
3
|
+
* Bump actions/checkout from 3 to 4 by @dependabot in https://github.com/yettoapp/hephaestus/pull/8
|
4
|
+
* Use centralized workflows for testing by @gjtorikian in https://github.com/yettoapp/hephaestus/pull/9
|
5
|
+
|
6
|
+
## New Contributors
|
7
|
+
* @dependabot made their first contribution in https://github.com/yettoapp/hephaestus/pull/8
|
8
|
+
|
9
|
+
**Full Changelog**: https://github.com/yettoapp/hephaestus/compare/v0.2.3...v0.3.0
|
10
|
+
## [v0.2.3] - 21-08-2023
|
11
|
+
## What's Changed
|
12
|
+
* Updates from staging by @gjtorikian in https://github.com/yettoapp/hephaestus/pull/7
|
13
|
+
|
14
|
+
|
15
|
+
**Full Changelog**: https://github.com/yettoapp/hephaestus/compare/v0.2.2...v0.2.3
|
1
16
|
## [v0.2.2] - 21-08-2023
|
2
17
|
## What's Changed
|
3
18
|
* 404/500 error handling by @gjtorikian in https://github.com/yettoapp/hephaestus/pull/5
|
data/lib/hephaestus/version.rb
CHANGED
@@ -5,15 +5,15 @@ on:
|
|
5
5
|
pull_request_target:
|
6
6
|
|
7
7
|
jobs:
|
8
|
-
|
9
|
-
|
8
|
+
ruby:
|
9
|
+
uses: yettoapp/actions/.github/workflows/ruby_test_suite.yml@main
|
10
|
+
secrets:
|
11
|
+
gh_token: ${{ secrets.GH_SISYPHUS_YETTO_REPO_TOKEN }}
|
10
12
|
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
with:
|
19
|
-
github_token: ${{ secrets.GH_SISYPHUS_YETTO_REPO_TOKEN }}
|
13
|
+
docker:
|
14
|
+
uses: yettoapp/actions/.github/workflows/test_dockerbuild.yml@main
|
15
|
+
secrets:
|
16
|
+
gh_token: ${{ secrets.GH_SISYPHUS_YETTO_REPO_TOKEN }}
|
17
|
+
fly_token: ${{ secrets.FLY_PRODUCTION_API_TOKEN }}
|
18
|
+
with:
|
19
|
+
app_name: "plug-app-production"
|
data/templates/Gemfile.erb
CHANGED
@@ -71,8 +71,6 @@ group :development, :test do
|
|
71
71
|
end
|
72
72
|
|
73
73
|
group :development do
|
74
|
-
gem "dockerfile-rails", "~> 1.5"
|
75
|
-
|
76
74
|
gem "dotenv-rails"
|
77
75
|
|
78
76
|
gem "foreman", "~> 0.87"
|
@@ -84,6 +82,7 @@ group :development do
|
|
84
82
|
gem "spoom"
|
85
83
|
gem "sorbet"
|
86
84
|
gem "tapioca", require: false
|
85
|
+
gem "webrick"
|
87
86
|
end
|
88
87
|
gem "sorbet-runtime"
|
89
88
|
|
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.
|
4
|
+
version: 0.3.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-
|
11
|
+
date: 2023-09-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|