plant 0.7.1 → 0.8.0
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 +4 -4
- data/lib/plant.rb +0 -1
- data/lib/plant/version.rb +1 -1
- metadata +1 -3
- data/lib/guard/plant.rb +0 -19
- data/lib/guard/plant/templates/Guardfile +0 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 093098e8ecc188e88cb390354dd771457d02370c
|
4
|
+
data.tar.gz: 9b1d96fcd38e4471992ebbaf30d45aad045186e6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6c7649ea3a4f7187aae4943a5a1b0ed2c11693148a1dd896cc6e1bace1d3773fa735dd3c6cadc41a0f767cf7d8961fd53f7ffcdccc51f632ef2ea9491329fd93
|
7
|
+
data.tar.gz: f9f428ed31e9786ac6c8d0e01e1600d6c0e8970f4301df32d4a9399f3fc52adb171182df14d754fcb2fd06c69f5b722f0228da7d9bb844fe6cc5255f9545b35a
|
data/lib/plant.rb
CHANGED
data/lib/plant/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: plant
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.8.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yule
|
@@ -178,8 +178,6 @@ files:
|
|
178
178
|
- db/migrate/20150820134825_create_plant_contents.rb
|
179
179
|
- lib/capistrano/plant.rb
|
180
180
|
- lib/capistrano/tasks/plant.rake
|
181
|
-
- lib/guard/plant.rb
|
182
|
-
- lib/guard/plant/templates/Guardfile
|
183
181
|
- lib/plant.rb
|
184
182
|
- lib/plant/engine.rb
|
185
183
|
- lib/plant/hash_pathify.rb
|
data/lib/guard/plant.rb
DELETED
@@ -1,19 +0,0 @@
|
|
1
|
-
module Guard
|
2
|
-
class Plant < Plugin
|
3
|
-
|
4
|
-
def run_on_additions(paths = [])
|
5
|
-
import_seeds(paths)
|
6
|
-
end
|
7
|
-
|
8
|
-
def run_on_modifications(paths = [])
|
9
|
-
import_seeds(paths)
|
10
|
-
end
|
11
|
-
|
12
|
-
private
|
13
|
-
|
14
|
-
def import_seeds(paths)
|
15
|
-
puts "Auto importing seeds"
|
16
|
-
system('bundle exec rake plant:seeds')
|
17
|
-
end
|
18
|
-
end
|
19
|
-
end
|