mvn2-say 1.0.0 → 1.1.0

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: f29249a5f351abeecd2e6eb5184c8d94606ad453
4
- data.tar.gz: 39733e3fd0fa55a13c5bfbcec4d09f4f8f268f88
3
+ metadata.gz: e107ab0a25b78297e48199bee0354dca81359584
4
+ data.tar.gz: 863739d0b29745daf89548c0580b6a1a920d7198
5
5
  SHA512:
6
- metadata.gz: 68e0042ad7dd1b22615f0397088d54568a0edd26e2064145c631a09146d764672007eff3505d9071263c11a0b003a0ee71b9ee31eca53cf14c339c7bdba3b58c
7
- data.tar.gz: 4e22f623536acb7a33663ea80a397fd2d17a767ef84415ff44bc62ae96325e1b3c0813c87892948c107e100a648f9206e171bdbdd3efb013ff623f44bc2f95c2
6
+ metadata.gz: f6f49597611bdb22f670b58b088161443f78b669e33806a03cccade2b8b52347238a0afd11dada946a4e9c175bd7b90377d565b2b607cfd74fa56a38c115595d
7
+ data.tar.gz: 9ddae6d1260cefe8cdfb2b5769d96bcb4d602f65e25fab1520720b7491b6bacab9f434631d621b0096a91750d26fe190c37fcfb9140e895a7242c4b0bf67c9bf
data/README.md CHANGED
@@ -1,28 +1,20 @@
1
1
  # Mvn2::Say
2
2
 
3
- TODO: Write a gem description
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
- Add this line to your application's Gemfile:
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
- TODO: Write usage instructions here
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/<my-github-username>/mvn2-say/fork )
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`)
@@ -1,3 +1,3 @@
1
1
  module Mvn2Say
2
- VERSION = '1.0.0'
2
+ VERSION = '1.1.0'
3
3
  end
@@ -1,7 +1,8 @@
1
- require 'mvn2/plugin'
1
+ require 'everyday-plugins'
2
+ include EverydayPlugins
2
3
  class GrowlPlugin
3
- extend Mvn2::Plugin
4
- extend Mvn2::PluginType
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
 
@@ -22,5 +22,5 @@ Gem::Specification.new do |spec|
22
22
  spec.add_development_dependency 'bundler', '~> 1.5'
23
23
  spec.add_development_dependency 'rake', '~> 10.0'
24
24
 
25
- spec.add_dependency 'mvn2', '>= 2.0.0'
25
+ spec.add_dependency 'everyday-plugins', '>= 1.0.0'
26
26
  end
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.0.0
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-03 00:00:00.000000000 Z
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: mvn2
42
+ name: everyday-plugins
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - ">="
46
46
  - !ruby/object:Gem::Version
47
- version: 2.0.0
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: 2.0.0
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