extensionator 1.1.1 → 1.1.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6f228953265e76ab390c3ebeb2fe6d9e18c27fbd
4
- data.tar.gz: b354884cce12724b56979fe5975ed9b0933d0c43
3
+ metadata.gz: 34b0852a6d42009d75d441cc59c6cabf0f47f9d8
4
+ data.tar.gz: eb4906c2334a657a92734ea2834fe5e491ce2345
5
5
  SHA512:
6
- metadata.gz: 27be9ac6fdc50941a5c7f206a20867df9a24ec403d6f54f8b37e3493e13ae3b402190fc312a6836a2aa0839ee245e64902d5a59a4bdd202c695199b27fe05f4d
7
- data.tar.gz: 7090dec70551fab36c7f7196ef00c7b1053c1643ddfd399c981ef9c8a05b5c053ab4c7b548ea8efd25b428f677eac6e1dbaab4b13f3bbabb04dcdb1a0ccdb636
6
+ metadata.gz: 200ae8728c7e48af75e1c1207d42e98b36204efcdc2f57d60676eb3222c1f2490f648ee8b9b772c5ad66dd74be40a8c388ef0bf0daf20cd15f522e06c98d31e8
7
+ data.tar.gz: 2b5fca0e073b0914598a862f5f7015868eb3573489e5c44c13a28e8f29126a5c8d26fe14a8d0e4fc824df3306c56e5d16f44da6fcdd3ad81d2f5dda91dbc7724
data/README.md CHANGED
@@ -39,7 +39,7 @@ Useful options! There are single-letter versions of most of these:
39
39
 
40
40
  * `--inject-key`. If you have an extension in the store, you know you can't have a "key" property in your manifest file. But if you do local developmentand want to keep your extension ID the same, you need that property in there. This is because Google hates you and wants to make your life hard. Fortunately, Extensionator can take your pem file, generate the public key, and put it in the manifest file before zipping up the extension. Yay!
41
41
 
42
- * `--inject-version`. Use this to override the "version" property in your manifest.
42
+ * `--inject-version`. Use this to override the "version" property in your manifest.
43
43
 
44
44
  Here's the whole shebang:
45
45
 
@@ -75,9 +75,9 @@ Extensionator.zip("directory/with/extension", "output_file.zip")
75
75
  Options go at the end of either method call, and just look just like the CLI ones, but as Ruby symbols:
76
76
 
77
77
  ```rb
78
- Extensionator.crx("dir", "key", "output.crx", inject_version: "4.5.1",
79
- inject_key: true,
80
- exclude: /\.md$/)
78
+ Extensionator.crx("dir", "key.pem", "output.crx", inject_version: "4.5.1",
79
+ inject_key: true,
80
+ exclude: /\.md$/)
81
81
  ```
82
82
 
83
83
  ## License
@@ -1,3 +1,3 @@
1
1
  module Extensionator
2
- VERSION = "1.1.1"
2
+ VERSION = "1.1.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: extensionator
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Isaac Cambron