guard-kjell 1.0.1 → 1.0.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: a0de1607812b50401a59d1366c0a40dc30612385
4
- data.tar.gz: d45f3ddd09ae57d9ee296b9f3bf2243bd97c995a
3
+ metadata.gz: 6f8a9fb49bc913e9a7eb56448d90ae1532ac1bfe
4
+ data.tar.gz: baad7a0708b22c399eb06c37368eb6f3c762c0bb
5
5
  SHA512:
6
- metadata.gz: b9e66e24b9c8bdd24840a93472f5fa75bdef9d1426f60ad18c80da15d86deddfbf06d326e7ddb2f854d68636e8e891a96806c2b908948413f37f15b63edfe5fe
7
- data.tar.gz: a8798820e514a8bffd16cba7ca02f6d042dd09bc43a31e00aaff06a36cb29e0e61866dac14ae4c0edebb0000f19e2ab7a26617f4a0f14a2eddf3c805369e2dc3
6
+ metadata.gz: bddc4ce87d9fb505c13f386a053cad326262cd041b6941adde7f8148fad75d4cd2c6a98281bb190398ef89215b71eb04e35cbab827f2d4aeb43f4ca14383d7d3
7
+ data.tar.gz: 6760d5d58ca5cf461a9a379103ede2e485c0b3412bc4ea0bf34d06398137cb3a1e9760132562b422830944200f49a125685b02ecc505230938c4dc2eaf3347b4
@@ -1,7 +1,7 @@
1
1
  # coding: utf-8
2
2
  lib = File.expand_path('../lib', __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'guard/kjell/version'
4
+ require 'guard/kjell'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "guard-kjell"
@@ -1,8 +1,9 @@
1
- require 'guard/kjell/version'
2
1
  require 'guard/compat/plugin'
3
2
 
4
3
  module Guard
5
4
  class Kjell < Plugin
5
+ VERSION = "1.0.2"
6
+
6
7
  def run_all
7
8
  puts "Running '#{options[:cmd]}'"
8
9
  system options[:cmd]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: guard-kjell
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kristoffer Roupé
@@ -71,7 +71,6 @@ files:
71
71
  - Rakefile
72
72
  - guard-kjell.gemspec
73
73
  - lib/guard/kjell.rb
74
- - lib/guard/kjell/version.rb
75
74
  homepage: http://github.com/magplus/guard-kjell
76
75
  licenses:
77
76
  - MIT
@@ -1,5 +0,0 @@
1
- module Guard
2
- class Kjell
3
- VERSION = "1.0.1"
4
- end
5
- end