guard-sheller 1.0.0 → 1.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8e1328e0d9aa7d4c71cfb3328ee712a3be7c08a7
4
- data.tar.gz: 3d03da66caeb216431a4a0486829d521cf6a5d1d
3
+ metadata.gz: e362734c92d659b2f90733bdd9e514017d957b9d
4
+ data.tar.gz: 802b5ee0fc74579caefdd4ce2608ca2d69e20402
5
5
  SHA512:
6
- metadata.gz: 96395c1c5ffb8a92c1b51b451bc92f0589c045aeeaac22532924c7743ad2bd72509c02e25909c9a5d4f7aa6ec8fcf6dba693e8972111d93b1595c645cae9a515
7
- data.tar.gz: 3b97bc520a2623ca333193bd6c17d17e1a571124ccc877e6722b558e22a4e3c51fd773014fbd0168df213fcd35c0f143c847f2450044fdcd8a31f22503f5d75b
6
+ metadata.gz: c7917d0d0b07d7defb49874012df9a6b06a3ce9bce6abb0ab715609d92edeeef866c2f153741d4011b0b51c9b8ab4ee6204d745218effbd163d00f013256d31b
7
+ data.tar.gz: 299090bde0ba8aa429a0b5e1d942c0d2ea3171c8c70632564a90505d42e8db5713dc92a469760538166bddd2b94da0a0b4d273e5d389c1c176b4ac1f7f13c098
data/CONTRIBUTING.md ADDED
@@ -0,0 +1,6 @@
1
+ ## Contribution Guidelines
2
+ 1. Fork the repository
3
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
4
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
5
+ 4. Push to the branch (`git push origin my-new-feature`)
6
+ 5. Create new Pull Request
data/README.md CHANGED
@@ -17,26 +17,13 @@ end
17
17
 
18
18
  ## Installation
19
19
 
20
- Add this line to your application's Gemfile:
21
-
22
- gem 'guard-sheller'
23
-
24
- And then execute:
25
-
26
- $ bundle
27
-
28
- Or install it yourself as:
29
-
30
- $ gem install guard-sheller
31
-
32
- ## Usage
33
-
34
- TODO: Write usage instructions here
20
+ ```bash
21
+ $ gem install guard-sheller
22
+ $ guard init sheller
23
+ ```
35
24
 
36
25
  ## Contributing
37
26
 
38
- 1. Fork it
39
- 2. Create your feature branch (`git checkout -b my-new-feature`)
40
- 3. Commit your changes (`git commit -am 'Add some feature'`)
41
- 4. Push to the branch (`git push origin my-new-feature`)
42
- 5. Create new Pull Request
27
+ Patches are always welcome and thank you to all [project contributors](https://github.com/thegarage/guard-sheller/graphs/contributors)!
28
+
29
+ Interested in contributing? Review the project [contribution guidelines](CONTRIBUTING.md) and get started!
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
18
18
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
19
  spec.require_paths = ["lib"]
20
20
 
21
- spec.add_runtime_dependency 'guard'
21
+ spec.add_runtime_dependency 'guard', '>= 2.0'
22
22
 
23
23
  spec.add_development_dependency "bundler", "~> 1.3"
24
24
  spec.add_development_dependency "rake"
@@ -1,5 +1,5 @@
1
1
  module Guard
2
2
  module ShellerVersion
3
- VERSION = "1.0.0"
3
+ VERSION = "1.0.1"
4
4
  end
5
5
  end
data/lib/guard/sheller.rb CHANGED
@@ -2,7 +2,7 @@ require 'guard'
2
2
  require 'guard/guard'
3
3
 
4
4
  module Guard
5
- class Sheller < Guard
5
+ class Sheller < Plugin
6
6
  def start
7
7
  UI.info 'Guard::Sheller is running'
8
8
  run_all if options[:all_on_start]
metadata CHANGED
@@ -1,55 +1,55 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: guard-sheller
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Sonnek
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-12-17 00:00:00.000000000 Z
11
+ date: 2014-11-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: guard
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - '>='
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0'
19
+ version: '2.0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - '>='
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: '0'
26
+ version: '2.0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: bundler
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ~>
31
+ - - "~>"
32
32
  - !ruby/object:Gem::Version
33
33
  version: '1.3'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ~>
38
+ - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: '1.3'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rake
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - '>='
45
+ - - ">="
46
46
  - !ruby/object:Gem::Version
47
47
  version: '0'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - '>='
52
+ - - ">="
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
55
  description: Guard plugin to execute command line scripts when files change
@@ -59,7 +59,8 @@ executables: []
59
59
  extensions: []
60
60
  extra_rdoc_files: []
61
61
  files:
62
- - .gitignore
62
+ - ".gitignore"
63
+ - CONTRIBUTING.md
63
64
  - Gemfile
64
65
  - LICENSE.txt
65
66
  - README.md
@@ -78,17 +79,17 @@ require_paths:
78
79
  - lib
79
80
  required_ruby_version: !ruby/object:Gem::Requirement
80
81
  requirements:
81
- - - '>='
82
+ - - ">="
82
83
  - !ruby/object:Gem::Version
83
84
  version: '0'
84
85
  required_rubygems_version: !ruby/object:Gem::Requirement
85
86
  requirements:
86
- - - '>='
87
+ - - ">="
87
88
  - !ruby/object:Gem::Version
88
89
  version: '0'
89
90
  requirements: []
90
91
  rubyforge_project:
91
- rubygems_version: 2.0.14
92
+ rubygems_version: 2.2.2
92
93
  signing_key:
93
94
  specification_version: 4
94
95
  summary: Guard plugin that automatically executes a configured shell script when files