guard-flog 0.0.1 → 0.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,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- MmNkNWQzY2E4NDgxZjc4NTMwYWE1OTYxYjk2N2YxYTliNWMyM2Y3NA==
4
+ ZTgyNWQ2ODczZjZjODEwYTk2ZDVhNDc1ZDc3OTFiMjVhNzE4OGY3OQ==
5
5
  data.tar.gz: !binary |-
6
- OTVkYmZiZGVhYmY3MTQ5ZTk4NmNmODc1M2VmOWIxYWM1ZDc3Y2Q3Mw==
6
+ NDk1OTNiNmI0NDYzNDdlM2FmNDZjODczYTgxMzFkOGE2MmZmYjNjMw==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- YjI5NmZkODQyM2I4ODZlNjUyZDYzNGY2M2JmOGQ0Yjc2ZjNiZWUzOTZhMjMw
10
- MTgxMzg4Njc3NGRlYzE3ZTZhM2MxNzE2Y2EwMDgzYmZmZmJmYjQ4N2U0ODk1
11
- MDJmNmEzZThjYTBhYzVmZWI5NjBlYmYzZmUxNzNmNzIxNDU1ZWY=
9
+ ZTRkZTdhNTk0ZDFkMWU2Zjc3MDc3NmIxNTI5MmUwZmI0NTM5ZjYyNmZlMTFl
10
+ NGFlMDdjY2RhZDZiYjVkMjI3NjhmMDJkYjljZTQ5ZmQxYjMyNGM1N2QzN2Mz
11
+ MTA1MDhhNDdmZmY2YzI5MTdiNGQ5MDE3YjlkNjY3Mzc5NzRkMTI=
12
12
  data.tar.gz: !binary |-
13
- YTY2YzFkNWE2YWVhYWU3YjFmY2E3M2FhMzM1YTdhYmExMjE4ZjMzYjk1NGYw
14
- YzM1YjMzMDNjZDEzOThkYzI2ZTNhM2NkNzUzNjRkYmEwNTRhOTBjY2ZmMmZk
15
- MDE1ZTBmOGI3M2EwNzZkNDVkNWQxMDQ2MTM1YzgxNzEzZjM3ZmU=
13
+ N2VmMDNiYWZiNjYwMGM0OWViY2UxYTdjOTFmNDBiMzYxODg0YmEzYWQ1MmRh
14
+ M2FjNGYyMTA5ZWJmNDQ5NTc1OGI3YTAzMTZiOWM4MDUwMTc5Zjc2NDEzNmU3
15
+ NTJlZWFjMzM0ZmZiYmI2MzI0NmJkYWI0YzkzNDY5NjIwZjllZTE=
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Guard::Flog [![Dependency Status](https://gemnasium.com/pericles/guard-flog.png)](https://gemnasium.com/pericles/guard-flog)
1
+ # Guard::Flog [![Dependency Status](https://gemnasium.com/pericles/guard-flog.png)](https://gemnasium.com/pericles/guard-flog) [![Code Climate](https://codeclimate.com/github/pericles/guard-flog.png)](https://codeclimate.com/github/pericles/guard-flog)
2
2
 
3
3
  Flog guard flogs every file on change.
4
4
 
@@ -12,7 +12,7 @@ Add it to your Gemfile (inside development group):
12
12
 
13
13
  ``` ruby
14
14
  group :development do
15
- gem 'guard-flog', git: 'git://github.com/pericles/guard-flog.git'
15
+ gem 'guard-flog'
16
16
  end
17
17
  ```
18
18
 
@@ -39,6 +39,12 @@ end
39
39
 
40
40
  Please read [Guard doc](https://github.com/guard/guard#readme) for more information about the Guardfile DSL.
41
41
 
42
+ ## TODO
43
+
44
+ * Tests
45
+ * Notifications
46
+ * Guard params
47
+
42
48
  ## Development
43
49
 
44
50
  * Source hosted at [GitHub](https://github.com/pericles/guard-flog)
data/guard-flog.gemspec CHANGED
@@ -4,26 +4,26 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
  require 'guard/flog/version'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
- spec.name = "guard-flog"
7
+ spec.name = 'guard-flog'
8
8
  spec.version = Guard::FlogVersion::VERSION
9
- spec.authors = ["Péricles Dias"]
10
- spec.email = ["pericles.dias@gmail.com"]
11
- spec.description = "Guard::Flog automatically run flog."
12
- spec.summary = "Guard gem for Flog"
13
- spec.homepage = ""
14
- spec.license = "MIT"
9
+ spec.authors = ['Péricles Dias']
10
+ spec.email = ['pericles.dias@gmail.com']
11
+ spec.description = 'Guard::Flog automatically run flog.'
12
+ spec.summary = 'Guard gem for Flog'
13
+ spec.homepage = 'https://github.com/pericles/guard-flog/'
14
+ spec.license = 'MIT'
15
15
 
16
16
  spec.files = `git ls-files`.split($/)
17
17
  spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
18
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
- spec.require_paths = ["lib"]
19
+ spec.require_paths = ['lib']
20
20
 
21
21
  spec.required_rubygems_version = '>= 2.0.6'
22
22
  spec.rubyforge_project = 'guard-flog'
23
23
 
24
24
  spec.add_dependency 'guard', '>= 1.8'
25
- spec.add_dependency 'flog', '~> 4.2.0'
25
+ spec.add_dependency 'flog', '~> 4.2.1'
26
26
 
27
- spec.add_development_dependency "bundler", "~> 1.3"
28
- spec.add_development_dependency "rake"
27
+ spec.add_development_dependency 'bundler', '~> 1.3'
28
+ spec.add_development_dependency 'rake'
29
29
  end
@@ -1,5 +1,5 @@
1
1
  module Guard
2
2
  module FlogVersion
3
- VERSION = "0.0.1"
3
+ VERSION = "0.0.2"
4
4
  end
5
5
  end
data/lib/guard/flog.rb CHANGED
@@ -5,7 +5,10 @@ module Guard
5
5
  class Flog < Guard
6
6
  autoload :Flogger, 'guard/flog/flogger'
7
7
 
8
- def start; end
8
+ def start
9
+ UI.info 'Guard::Flog is running'
10
+ run_all if options[:all_on_start]
11
+ end
9
12
 
10
13
  def reload; end
11
14
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: guard-flog
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Péricles Dias
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-03-13 00:00:00.000000000 Z
11
+ date: 2014-06-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: guard
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - ~>
32
32
  - !ruby/object:Gem::Version
33
- version: 4.2.0
33
+ version: 4.2.1
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - ~>
39
39
  - !ruby/object:Gem::Version
40
- version: 4.2.0
40
+ version: 4.2.1
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: bundler
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -84,7 +84,7 @@ files:
84
84
  - lib/guard/flog/flogger.rb
85
85
  - lib/guard/flog/templates/Guardfile
86
86
  - lib/guard/flog/version.rb
87
- homepage: ''
87
+ homepage: https://github.com/pericles/guard-flog/
88
88
  licenses:
89
89
  - MIT
90
90
  metadata: {}