bake-modernize 0.4.3 → 0.4.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f388d856aa508d382e100715cd658fb60b59214affc75221f1139833ab1a61b5
4
- data.tar.gz: 93223ba10fef23327721fe4e056ca7e21a4f18c0f436af92ebf491bd081ad421
3
+ metadata.gz: 807c08cb58545103502c56fdc2079f09f6804d6a0708d538094bfc6f0d9d39f7
4
+ data.tar.gz: 7a06319c9bf8cefa96f88102c1f3fdb3536019d86953af829c49aef8473c5986
5
5
  SHA512:
6
- metadata.gz: 7b64deed2eef1b59ca8e91f5da079d072f64024b36a9667b1018ce92b1fdb82017b610f72b81b6490c3e9a4e9d86b0ee5a129102790aa96b2cc83dd39ce83cef
7
- data.tar.gz: 14148209216c06c0c997d4d19c267667cd8aed73ef3ae94b0e0976c84f7e09cba7eb413824956028f684581c018dcc707e9a1757fbed4de9c857fafa526719f9
6
+ metadata.gz: 3002497d7f06c4847773080d82d2cc4c75380e6de0f8031c06420fc81d43709ea196baa905c05e837869a06ae614ef66f7a3c390028f78e2b722f01133ef7083
7
+ data.tar.gz: a482304f5b9be2622b68f2b9edc8dd65a4aa0cbd72b99890ac24a48c164a585ed3e83c0790781eb24a4d0f72796955fe19d4ae5e2f4e31d9d487e2ebf9f24ef2
@@ -76,10 +76,9 @@ def update(path: default_gemspec_path, output: $stdout)
76
76
  end
77
77
  end
78
78
 
79
- if spec.dependencies.any?
79
+ if spec.runtime_dependencies.any?
80
80
  output.puts "\t"
81
- spec.dependencies.sort.each do |dependency|
82
- next unless dependency.type == :runtime
81
+ spec.runtime_dependencies.sort.each do |dependency|
83
82
  output.puts "\tspec.add_dependency #{format_dependency(dependency)}"
84
83
  end
85
84
  end
@@ -20,6 +20,6 @@
20
20
 
21
21
  module Bake
22
22
  module Modernize
23
- VERSION = "0.4.3"
23
+ VERSION = "0.4.8"
24
24
  end
25
25
  end
@@ -17,6 +17,7 @@ jobs:
17
17
  - 2.5
18
18
  - 2.6
19
19
  - 2.7
20
+ - 3.0
20
21
 
21
22
  experimental: [false]
22
23
  env: [""]
@@ -0,0 +1,32 @@
1
+ name: Documentation
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - master
7
+
8
+ jobs:
9
+ deploy:
10
+ runs-on: ubuntu-latest
11
+
12
+ steps:
13
+ - uses: actions/checkout@v2
14
+ - uses: ruby/setup-ruby@v1
15
+ env:
16
+ BUNDLE_WITH: maintenance
17
+ with:
18
+ ruby-version: 2.7
19
+ bundler-cache: true
20
+
21
+ - name: Installing packages
22
+ run: sudo apt-get install wget
23
+
24
+ - name: Generate documentation
25
+ timeout-minutes: 5
26
+ run: bundle exec bake utopia:project:static
27
+
28
+ - name: Deploy documentation
29
+ uses: JamesIves/github-pages-deploy-action@4.0.0
30
+ with:
31
+ branch: docs
32
+ folder: docs
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bake-modernize
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.3
4
+ version: 0.4.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Samuel Williams
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-09-02 00:00:00.000000000 Z
11
+ date: 2021-04-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: async-http
@@ -108,6 +108,7 @@ files:
108
108
  - lib/bake/modernize.rb
109
109
  - lib/bake/modernize/version.rb
110
110
  - template/actions/.github/workflows/development.yml
111
+ - template/actions/.github/workflows/documentation.yml
111
112
  - template/editorconfig/.editorconfig
112
113
  - template/readme/README.md
113
114
  homepage: https://github.com/ioquatix/bake-modernize