guard-seeds 0.0.2 → 0.0.3

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.
@@ -0,0 +1 @@
1
+ *.gem
@@ -45,7 +45,7 @@ module Guard
45
45
  started_at = Time.now
46
46
  @result = system("bundle exec rake db:seeds")
47
47
  UI.info "rake db:seeds ended #{Time.now - started_at} seconds"
48
- Notifier.notify(@result, :title => 'Data from seeds reloaded', :image => :success) if notify?
48
+ ::Guard::Notifier.notify(@result, :title => 'Seed data reloaded', :image => :success) if notify?
49
49
  @result
50
50
  end
51
51
 
@@ -1,5 +1,5 @@
1
1
  module Guard
2
2
  module Seeds
3
- VERSION = "0.0.2"
3
+ VERSION = "0.0.3"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: guard-seeds
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -13,7 +13,7 @@ date: 2011-12-25 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: guard
16
- requirement: &70186172679640 !ruby/object:Gem::Requirement
16
+ requirement: &70121956947080 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,7 +21,7 @@ dependencies:
21
21
  version: '0'
22
22
  type: :development
23
23
  prerelease: false
24
- version_requirements: *70186172679640
24
+ version_requirements: *70121956947080
25
25
  description: ! 'Guard-Seeds: is a guard extension handling the rake db:seeds when
26
26
  seeds.rb changes'
27
27
  email:
@@ -30,6 +30,7 @@ executables: []
30
30
  extensions: []
31
31
  extra_rdoc_files: []
32
32
  files:
33
+ - .gitignore
33
34
  - Gemfile
34
35
  - Gemfile.lock
35
36
  - README