extensionator 0.0.6 → 0.0.8

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
  SHA1:
3
- metadata.gz: b9c64ad4429d245aedfa3bc2242e32865873c1e3
4
- data.tar.gz: da47e4ca7feb90acd55199d196b8b8c7a44e0aef
3
+ metadata.gz: a2a22eec1dab83496d1e50ee437c061d87330f6b
4
+ data.tar.gz: 4abaf7a0a148b4b321ed75ee5f7abc466b930011
5
5
  SHA512:
6
- metadata.gz: a7f2a7302c1ddf167f89e757b7cea1d923c06ad43b927294f321d8158734310d4dab441a1b35f258b3c9fd387368dd81f72a41d65edc54737d4b0926ae40d9de
7
- data.tar.gz: e18f4c7772ed29138d581d685f5fbf109ef08ad4299bdf9f949df981f884c6ad419736e3c0d2bea5700db6a31e9fa5eb97802b1a39e08f40ce24f802e1fd4ccb
6
+ metadata.gz: 84db3cfaa4567b8772f429ca5788ee1170cf9d12254e0dee7fd4a337bb133551287159e31856fc4bbb4aa3985181c07a7cdb0b5373fc3256d49f2bcc239e6f55
7
+ data.tar.gz: 4e943aacfde8127429399cc36eac94fd276217067a8264cdc967b6e12870c1fa12a114dd5d9ec41ce03b851028ab2d541ee6933697daa3ac0042036b3bd87812
data/README.md CHANGED
@@ -36,7 +36,7 @@ usage: /Users/isaac/.gem/ruby/2.1.5/bin/extensionator [options]
36
36
  -d, --directory Directory containing the extension. (Default: .)
37
37
  -i, --identity Location of the pem file to sign with. (Required)
38
38
  -o, --output Location of the output file. (Default: 'extension.crx')
39
- -e, --exclude Regular expression for filenames to exclude. (Default: .*\.crx$)
39
+ -e, --exclude Regular expression for filenames to exclude. (Default: \.crx$)
40
40
  -v, --version Extensionator version info.
41
41
  -h, --help Print this message.
42
42
  ```
@@ -12,7 +12,7 @@ opts = Slop.parse do |o|
12
12
  o.string "-d", "--directory", "Directory containing the extension. (Default: .)", default: "."
13
13
  o.string "-i", "--identity", "Location of the pem file to sign with. (Required)"
14
14
  o.string "-o", "--output", "Location of the output file. (Default: 'extension.crx')", default: "extension.crx"
15
- o.string "-e", "--exclude", "Regular expression for filenames to exclude. (Default: .*\\.crx$)", default: nil
15
+ o.string "-e", "--exclude", "Regular expression for filenames to exclude. (Default: \.crx$)", default: nil
16
16
  o.on "-v", "--version", "Extensionator version info." do
17
17
  puts Extensionator::VERSION
18
18
  exit
@@ -5,7 +5,7 @@ require "pathname"
5
5
  require "zip"
6
6
 
7
7
  module Extensionator
8
- VERSION = "0.0.6"
8
+ VERSION = "0.0.8"
9
9
 
10
10
  module Impl
11
11
  def self.create(dir, key_file, dest_filename, opts)
@@ -65,7 +65,7 @@ module Extensionator
65
65
  end
66
66
  end
67
67
 
68
- def self.create(dir, key_file, dest_filename, opts = {exclude: /.*\.crx/})
68
+ def self.create(dir, key_file, dest_filename, opts = {exclude: /\.crx$/})
69
69
  Impl.create(dir, key_file, dest_filename, opts)
70
70
  end
71
71
  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: 0.0.6
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Isaac Cambron