bake-modernize 0.4.2 → 0.4.7

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: 938d06d57d2422577b066ceec51607328cee09d1fb6fcb3c8c3b14eaefd3d4c9
4
- data.tar.gz: f616bcef5db5a629b6c65409116fcaeb14f60ebbf9b83e2cecfde1269fe07bae
3
+ metadata.gz: 31c24582528f8dc6b7ef413151053e2c1d26f87f5e03a1e5a52ec93339cf0eea
4
+ data.tar.gz: 3377c8eae2a52b7ab0a7d4ac23b0c0a0ed246cb4e8a590ff24ea755c2de5c22a
5
5
  SHA512:
6
- metadata.gz: b82a18f4cc498e32c801a33f9fab64fc9e4b4ec349e8eff81a95e6655a8703ef0769794b06d38e8f6b9b478b402187db84f21791d1768b70c0d08c3328a1c011
7
- data.tar.gz: e3440625fafda1bb0f38c483b95a29780e854784a8b277344841df21aac3af527fe924ab863abac3be8f34d4bccb124d97c85cc05fddc1377ab60a82df3da35d
6
+ metadata.gz: 458353732464bdc2b4ea67a5754dbf033f1dd623eeac689f070595a81b034156d70a290c9bac210ac284019d8efc76ad58321b9a3960869965fec36d3b48c83f
7
+ data.tar.gz: fdf544171924a8963d2da4bfc165a385146be4ed7a1f8ec4199f119768193129227bc4819095d432e3b60a0dd9d631fa036f6d0d3089f8b9a0eeb993b55e61c8
@@ -18,8 +18,7 @@ def update(root:)
18
18
  Bake::Modernize.copy_template(template_root, root)
19
19
 
20
20
  readme_path = File.expand_path("README.md", root)
21
- repository_url = self.repository_url(root)
22
- self.update_badges(readme_path, repository_url)
21
+ update_badges(readme_path, repository_url(root))
23
22
  end
24
23
 
25
24
  private
@@ -33,7 +32,7 @@ def repository_url(root)
33
32
  end
34
33
  end
35
34
 
36
- def badge_for(repository_url = self.repository_url)
35
+ def badge_for(repository_url)
37
36
  "[![Development Status](#{repository_url}/workflows/Development/badge.svg)](#{repository_url}/actions?workflow=Development)"
38
37
  end
39
38
 
@@ -1,7 +1,7 @@
1
1
 
2
2
  # Rewrite the current gemspec.
3
3
  def gemspec
4
- path = self.default_gemspec_path
4
+ path = default_gemspec_path
5
5
  buffer = StringIO.new
6
6
 
7
7
  update(path: path, output: buffer)
@@ -11,11 +11,11 @@ end
11
11
 
12
12
  # Rewrite the specified gemspec.
13
13
  # @param
14
- def update(path: self.default_gemspec_path, output: $stdout)
14
+ def update(path: default_gemspec_path, output: $stdout)
15
15
  spec = Gem::Specification.load(path)
16
16
 
17
17
  root = File.dirname(path)
18
- version_path = self.version_path(root)
18
+ version_path = version_path(root)
19
19
 
20
20
  constant = File.read(version_path)
21
21
  .scan(/module\s+(.*?)$/)
@@ -76,10 +76,9 @@ def update(path: self.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
@@ -19,8 +19,8 @@
19
19
  # THE SOFTWARE.
20
20
 
21
21
  require "bake/modernize/version"
22
-
23
22
  require 'build/files/glob'
23
+ require 'fileutils'
24
24
 
25
25
  module Bake
26
26
  module Modernize
@@ -20,6 +20,6 @@
20
20
 
21
21
  module Bake
22
22
  module Modernize
23
- VERSION = "0.4.2"
23
+ VERSION = "0.4.7"
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: gh-pages
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.2
4
+ version: 0.4.7
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-02-14 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