extensionator 2.3.0 → 2.3.1

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: 162309dd5fabaa5c6806cb50a4c53064980af995272cbf9935448c8b502d9132
4
- data.tar.gz: fc13e8ef97d7b2232e884a42058885324811a8025f0f4d25ad61f663925dbd2c
3
+ metadata.gz: 1b05539d4c93d6df39256509c1c27627a3bc3f5af1b1ce91442077ffaafb0c78
4
+ data.tar.gz: 626ed1f92d2e3196c6434443470e8a68fefbcb00333ff31654fea8d622e2570f
5
5
  SHA512:
6
- metadata.gz: 23b1b13736fea52d782ee6f79a0baada94995c1130a023164b89abec1afb63b84f98f375223845bc59709a82e3a81bf78c87ae880f2e6ad22ff23237dd8858a5
7
- data.tar.gz: afef37941715448b0bc0ae4f360984db664a30d25559ff801a24d8eb8a679c8e971567dde16f6b918f18f25c695a2157f9f9b3093a422a0c1d6ca6952f546a14
6
+ metadata.gz: 8f7e6674fd023aeab1f0603f6313a7cc784360d20a14374e103bb7a74d1c99b6bbafbf7e7ff6e1c6681de9f8d5c55e79cc4bbf1e7113acef88a6a3cc9401c94b
7
+ data.tar.gz: 81896e4cefc7b83ebeebd21deca969da02f353e3ccde9eb4cf9a02e200dd4d842867bedb1edc66d1cc2abc7655c334fc62b98adadd4987eca96537be7333461e
data/README.md CHANGED
@@ -5,7 +5,7 @@ Package Chrome extensions. Zip files or CRXs. Some convenience options. Use the
5
5
  [![Gem Version][gem-image]][gem-url]
6
6
  [![MIT License][license-image]][license]
7
7
  [![Gem Downloads][gem-dl-image]][gem-url]
8
- [![Build Status][travis-image]][travis-url]
8
+ [![Build Status][github-actions]][github-actions]
9
9
 
10
10
  ## You probably don't need this anymore
11
11
 
@@ -111,16 +111,10 @@ Copyright 2015 Zensight. Distributed under the MIT License. See the [LICENSE][]
111
111
  [license-image]: http://img.shields.io/badge/license-MIT-blue.svg?style=flat-square
112
112
  [license]: LICENSE.md
113
113
 
114
- [code-climate-image]: https://img.shields.io/codeclimate/github/Zensight/extensionator.svg?style=flat-square
115
- [code-climate-url]: https://codeclimate.com/github/Zensight/extensionator
116
-
117
114
  [gem-image]: https://img.shields.io/gem/v/extensionator.svg?style=flat-square
118
115
  [gem-dl-image]: https://img.shields.io/gem/dt/extensionator.svg?style=flat-square
119
116
  [gem-url]: https://rubygems.org/gems/extensionator
120
117
 
121
- [travis-url]: http://travis-ci.org/Zensight/extensionator
122
- [travis-image]: http://img.shields.io/travis/Zensight/extensionator.svg?style=flat-square
123
-
124
- [crxmake-url]: https://github.com/Constellation/crxmake
118
+ [github-actions]: https://github.com/tricknotes/extensionator/workflows/Build/badge.svg
125
119
 
126
120
  [phasers-image]: https://img.shields.io/badge/phasers-stun-brightgreen.svg?style=flat-square
@@ -7,7 +7,7 @@ module Extensionator
7
7
  def initialize(dir)
8
8
  manifest_file = "#{dir}/manifest.json"
9
9
 
10
- raise "Can't find manifest file" unless File.exists? manifest_file
10
+ raise "Can't find manifest file" unless File.exist? manifest_file
11
11
 
12
12
  begin
13
13
  @manifest = JSON.parse(File.read(manifest_file))
@@ -1,3 +1,3 @@
1
1
  module Extensionator
2
- VERSION = "2.3.0"
2
+ VERSION = "2.3.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: extensionator
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.0
4
+ version: 2.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Isaac Cambron
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-05-07 00:00:00.000000000 Z
11
+ date: 2023-05-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -114,7 +114,7 @@ homepage: http://github.com/tricknotes/extensionator
114
114
  licenses:
115
115
  - MIT
116
116
  metadata: {}
117
- post_install_message:
117
+ post_install_message:
118
118
  rdoc_options: []
119
119
  require_paths:
120
120
  - lib
@@ -129,8 +129,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
129
129
  - !ruby/object:Gem::Version
130
130
  version: 1.3.5
131
131
  requirements: []
132
- rubygems_version: 3.0.3
133
- signing_key:
132
+ rubygems_version: 3.4.10
133
+ signing_key:
134
134
  specification_version: 4
135
135
  summary: Build and sign Chrome extensions (.crx files), either from the command line
136
136
  or using a Ruby API.