extensionator 2.1 → 2.1.1
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 +4 -4
- data/README.md +1 -1
- data/extensionator.gemspec +1 -1
- data/lib/extensionator/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0ea109481b012fb2651233acb194476fe954a10f
|
|
4
|
+
data.tar.gz: 8835cf6e1c5f8cf120431a092a65826ebfabd482
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 510613538e185777aa75cd235d224063f15717a74309b595db97851fa5e5dbd1ed19d145c3874d771af73657b8efb2bb6f068f0fba2bc1bd3a38b6225ad8a164
|
|
7
|
+
data.tar.gz: 4dd25ecc023f55c1d095f4265e5ce16b8c3d88229a6ff82be34547ba8f797081fca168e0ac400fab2d13040c3540f6aa6ce0a414b2bdf2a7b1e052e7f95a10b6
|
data/README.md
CHANGED
|
@@ -17,7 +17,7 @@ gem install extensionator
|
|
|
17
17
|
|
|
18
18
|
## Identity
|
|
19
19
|
|
|
20
|
-
If you plan on generating a CRX (as opposed to just a zip file to upload somewhere), you need a private key
|
|
20
|
+
If you plan on generating a CRX (as opposed to just a zip file to upload somewhere), you need a private key to sign the extension with, and this is a BYOK (bring your own key) library. So first, you need a PEM file. If you have one, cool. If not, do this:
|
|
21
21
|
|
|
22
22
|
```
|
|
23
23
|
openssl genrsa -out identity.pem 2048
|
data/extensionator.gemspec
CHANGED
|
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
4
4
|
Gem::Specification.new do |spec|
|
|
5
5
|
spec.add_development_dependency "bundler", "~> 1.1"
|
|
6
6
|
spec.add_runtime_dependency "rubyzip", "1.2.0"
|
|
7
|
-
spec.add_runtime_dependency "slop", "~> 4.
|
|
7
|
+
spec.add_runtime_dependency "slop", "~> 4.4"
|
|
8
8
|
spec.authors = ["Isaac Cambron"]
|
|
9
9
|
spec.description = "A tool for packaging Chrome extensions"
|
|
10
10
|
spec.email = %w(isaac@isaaccambron.com)
|
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:
|
|
4
|
+
version: 2.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Isaac Cambron
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-08-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -44,14 +44,14 @@ dependencies:
|
|
|
44
44
|
requirements:
|
|
45
45
|
- - "~>"
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
|
-
version: '4.
|
|
47
|
+
version: '4.4'
|
|
48
48
|
type: :runtime
|
|
49
49
|
prerelease: false
|
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
51
|
requirements:
|
|
52
52
|
- - "~>"
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
|
-
version: '4.
|
|
54
|
+
version: '4.4'
|
|
55
55
|
description: A tool for packaging Chrome extensions
|
|
56
56
|
email:
|
|
57
57
|
- isaac@isaaccambron.com
|