mvn2-say 1.0.0 → 1.1.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 +4 -4
- data/README.md +4 -12
- data/lib/mvn2-say/version.rb +1 -1
- data/lib/mvn2/plugin/say.plugin.rb +4 -3
- data/mvn2-say.gemspec +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e107ab0a25b78297e48199bee0354dca81359584
|
4
|
+
data.tar.gz: 863739d0b29745daf89548c0580b6a1a920d7198
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f6f49597611bdb22f670b58b088161443f78b669e33806a03cccade2b8b52347238a0afd11dada946a4e9c175bd7b90377d565b2b607cfd74fa56a38c115595d
|
7
|
+
data.tar.gz: 9ddae6d1260cefe8cdfb2b5769d96bcb4d602f65e25fab1520720b7491b6bacab9f434631d621b0096a91750d26fe190c37fcfb9140e895a7242c4b0bf67c9bf
|
data/README.md
CHANGED
@@ -1,28 +1,20 @@
|
|
1
1
|
# Mvn2::Say
|
2
2
|
|
3
|
-
|
3
|
+
A `mvn2` plugin to use the Mac `say` command to say the result of the maven build.
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
7
|
-
|
8
|
-
|
9
|
-
gem 'mvn2-say'
|
10
|
-
|
11
|
-
And then execute:
|
12
|
-
|
13
|
-
$ bundle
|
14
|
-
|
15
|
-
Or install it yourself as:
|
7
|
+
Install it yourself as:
|
16
8
|
|
17
9
|
$ gem install mvn2-say
|
18
10
|
|
19
11
|
## Usage
|
20
12
|
|
21
|
-
|
13
|
+
Adds the `-y` / `--say` option to mvn2 to say the result of the build using the mac `say` command.
|
22
14
|
|
23
15
|
## Contributing
|
24
16
|
|
25
|
-
1. Fork it ( http://github.com
|
17
|
+
1. Fork it ( http://github.com/henderea/mvn2-say/fork )
|
26
18
|
2. Create your feature branch (`git checkout -b my-new-feature`)
|
27
19
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
28
20
|
4. Push to the branch (`git push origin my-new-feature`)
|
data/lib/mvn2-say/version.rb
CHANGED
@@ -1,7 +1,8 @@
|
|
1
|
-
require '
|
1
|
+
require 'everyday-plugins'
|
2
|
+
include EverydayPlugins
|
2
3
|
class GrowlPlugin
|
3
|
-
extend
|
4
|
-
extend
|
4
|
+
extend Plugin
|
5
|
+
extend PluginType
|
5
6
|
|
6
7
|
register :option, sym: :say, names: %w(-y --say), desc: 'Use the mac say command to say the result'
|
7
8
|
|
data/mvn2-say.gemspec
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mvn2-say
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Eric Henderson
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-02-
|
11
|
+
date: 2014-02-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -39,19 +39,19 @@ dependencies:
|
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '10.0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
|
-
name:
|
42
|
+
name: everyday-plugins
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - ">="
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version:
|
47
|
+
version: 1.0.0
|
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:
|
54
|
+
version: 1.0.0
|
55
55
|
description: Use the Mac 'say' command to say the result of the build when it finishes.
|
56
56
|
email:
|
57
57
|
- henderea@gmail.com
|