extensionator 2.1.5 → 2.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/README.md +10 -1
- data/extensionator.gemspec +25 -25
- data/lib/extensionator.rb +0 -0
- data/lib/extensionator/cli.rb +0 -0
- data/lib/extensionator/creator.rb +0 -0
- data/lib/extensionator/crx.rb +0 -0
- data/lib/extensionator/error.rb +0 -0
- data/lib/extensionator/manifest.rb +0 -0
- data/lib/extensionator/version.rb +3 -3
- metadata +15 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 756fed71e799b66e59c2956b3b663d243ba387d9b234192e548f9f9b576f9860
|
4
|
+
data.tar.gz: b4da403b71aa8a0b4719c625c6eb20dbc9c0330cf778725fa22cec2d6685f9b5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fbef21631a18d448924983d06601923d6b6aa04ecf79fc55687821a7ae8e2f3ae72a7814ca2b290672634e8fdcd426a392881800bb47e18e9d568dbd6fd29a45
|
7
|
+
data.tar.gz: c5793078efeea203a398a594c51afa2a193b7f4b91ff81547ee5c7fa807d046e2983db2da7a72a56f7c98d63b1496009e89bb99ffcbdb68c38aaf1d0b7df53f6
|
data/README.md
CHANGED
@@ -6,7 +6,16 @@ Package Chrome extensions. Zip files or CRXs. Some convenience options. Use the
|
|
6
6
|
[![MIT License][license-image]][license]
|
7
7
|
[![Gem Downloads][gem-dl-image]][gem-url]
|
8
8
|
[![Build Status][travis-image]][travis-url]
|
9
|
-
|
9
|
+
|
10
|
+
## You probably don't need this anymore
|
11
|
+
|
12
|
+
Extensionator made it really easy to build and pacakge CRX files, which was previously an annoying and circuitous process. Chrome's fixed most of that:
|
13
|
+
|
14
|
+
* CRX files aren't supported by Chrome anymore
|
15
|
+
* You can use zip files for non-store distribution. No signatures required
|
16
|
+
* The Chromestore no longer cares if you include a key in the submitted manifest, which was previously a huge PITA
|
17
|
+
|
18
|
+
These simplifications mean it's almost easy to use a standard zip tool; the only thing Extensionator adds for you is the ability to inject the version number into the manifest, which seems like a questionable amount of value for a build tool to add. We're leaving this up because there's no reason to take it down, but FWIW, we don't use it anymore ourselves.
|
10
19
|
|
11
20
|
## Install
|
12
21
|
|
data/extensionator.gemspec
CHANGED
@@ -1,25 +1,25 @@
|
|
1
|
-
lib = File.expand_path("../lib", __FILE__)
|
2
|
-
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
3
|
-
|
4
|
-
Gem::Specification.new do |spec|
|
5
|
-
spec.add_development_dependency "bundler", "
|
6
|
-
spec.add_development_dependency "minitest", "~> 5.11"
|
7
|
-
spec.add_development_dependency "rake", "~> 12.3"
|
8
|
-
spec.add_runtime_dependency "rubyzip", "1.2
|
9
|
-
spec.add_runtime_dependency "slop", "~> 4.4"
|
10
|
-
spec.authors = ["Isaac Cambron"]
|
11
|
-
spec.description = "A tool for packaging Chrome extensions"
|
12
|
-
spec.email = %w(isaac@isaaccambron.com)
|
13
|
-
spec.executables = %w(extensionator)
|
14
|
-
spec.files = %w(README.md extensionator.gemspec bin/extensionator) + Dir["lib/**/*.rb"]
|
15
|
-
spec.homepage = "http://github.com/zensight/extensionator/"
|
16
|
-
spec.licenses = %w(MIT)
|
17
|
-
spec.name = "extensionator"
|
18
|
-
spec.require_paths = %w(lib)
|
19
|
-
spec.required_ruby_version = ">= 2.0.0"
|
20
|
-
spec.required_rubygems_version = ">= 1.3.5"
|
21
|
-
spec.summary = "Build and sign Chrome extensions (.crx files), either from the command line or using a Ruby API."
|
22
|
-
|
23
|
-
require "extensionator/version"
|
24
|
-
spec.version = Extensionator::VERSION
|
25
|
-
end
|
1
|
+
lib = File.expand_path("../lib", __FILE__)
|
2
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
3
|
+
|
4
|
+
Gem::Specification.new do |spec|
|
5
|
+
spec.add_development_dependency "bundler", ">= 1.1", "< 3"
|
6
|
+
spec.add_development_dependency "minitest", "~> 5.11"
|
7
|
+
spec.add_development_dependency "rake", "~> 12.3"
|
8
|
+
spec.add_runtime_dependency "rubyzip", "~> 1.2"
|
9
|
+
spec.add_runtime_dependency "slop", "~> 4.4"
|
10
|
+
spec.authors = ["Isaac Cambron"]
|
11
|
+
spec.description = "A tool for packaging Chrome extensions"
|
12
|
+
spec.email = %w(isaac@isaaccambron.com)
|
13
|
+
spec.executables = %w(extensionator)
|
14
|
+
spec.files = %w(README.md extensionator.gemspec bin/extensionator) + Dir["lib/**/*.rb"]
|
15
|
+
spec.homepage = "http://github.com/zensight/extensionator/"
|
16
|
+
spec.licenses = %w(MIT)
|
17
|
+
spec.name = "extensionator"
|
18
|
+
spec.require_paths = %w(lib)
|
19
|
+
spec.required_ruby_version = ">= 2.0.0"
|
20
|
+
spec.required_rubygems_version = ">= 1.3.5"
|
21
|
+
spec.summary = "Build and sign Chrome extensions (.crx files), either from the command line or using a Ruby API."
|
22
|
+
|
23
|
+
require "extensionator/version"
|
24
|
+
spec.version = Extensionator::VERSION
|
25
|
+
end
|
data/lib/extensionator.rb
CHANGED
File without changes
|
data/lib/extensionator/cli.rb
CHANGED
File without changes
|
File without changes
|
data/lib/extensionator/crx.rb
CHANGED
File without changes
|
data/lib/extensionator/error.rb
CHANGED
File without changes
|
File without changes
|
@@ -1,3 +1,3 @@
|
|
1
|
-
module Extensionator
|
2
|
-
VERSION = "2.
|
3
|
-
end
|
1
|
+
module Extensionator
|
2
|
+
VERSION = "2.2.0"
|
3
|
+
end
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: extensionator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Isaac Cambron
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-05-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: '1.1'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: '3'
|
20
23
|
type: :development
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
25
28
|
- !ruby/object:Gem::Version
|
26
29
|
version: '1.1'
|
30
|
+
- - "<"
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '3'
|
27
33
|
- !ruby/object:Gem::Dependency
|
28
34
|
name: minitest
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -56,16 +62,16 @@ dependencies:
|
|
56
62
|
name: rubyzip
|
57
63
|
requirement: !ruby/object:Gem::Requirement
|
58
64
|
requirements:
|
59
|
-
- -
|
65
|
+
- - "~>"
|
60
66
|
- !ruby/object:Gem::Version
|
61
|
-
version: 1.2
|
67
|
+
version: '1.2'
|
62
68
|
type: :runtime
|
63
69
|
prerelease: false
|
64
70
|
version_requirements: !ruby/object:Gem::Requirement
|
65
71
|
requirements:
|
66
|
-
- -
|
72
|
+
- - "~>"
|
67
73
|
- !ruby/object:Gem::Version
|
68
|
-
version: 1.2
|
74
|
+
version: '1.2'
|
69
75
|
- !ruby/object:Gem::Dependency
|
70
76
|
name: slop
|
71
77
|
requirement: !ruby/object:Gem::Requirement
|
@@ -117,8 +123,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
117
123
|
- !ruby/object:Gem::Version
|
118
124
|
version: 1.3.5
|
119
125
|
requirements: []
|
120
|
-
|
121
|
-
rubygems_version: 2.5.2.1
|
126
|
+
rubygems_version: 3.0.3
|
122
127
|
signing_key:
|
123
128
|
specification_version: 4
|
124
129
|
summary: Build and sign Chrome extensions (.crx files), either from the command line
|