guard-flopbox 1.3 → 1.4

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.
Files changed (2) hide show
  1. data/guard-flopbox.gemspec +3 -1
  2. metadata +13 -3
@@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "guard-flopbox"
6
- s.version = 1.3
6
+ s.version = 1.4
7
7
  s.authors = ["Vincent Chu"]
8
8
  s.email = ["vincentchu at gmail dot com"]
9
9
  s.homepage = "http://github.com/vincentchu/guard-flopbox"
@@ -16,4 +16,6 @@ Gem::Specification.new do |s|
16
16
  s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
17
17
  s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
18
18
  s.require_paths = ["lib"]
19
+
20
+ s.add_dependency 'net-sftp'
19
21
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: guard-flopbox
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: "1.3"
5
+ version: "1.4"
6
6
  platform: ruby
7
7
  authors:
8
8
  - Vincent Chu
@@ -12,8 +12,18 @@ cert_chain: []
12
12
 
13
13
  date: 2011-07-01 00:00:00 -07:00
14
14
  default_executable:
15
- dependencies: []
16
-
15
+ dependencies:
16
+ - !ruby/object:Gem::Dependency
17
+ name: net-sftp
18
+ prerelease: false
19
+ requirement: &id001 !ruby/object:Gem::Requirement
20
+ none: false
21
+ requirements:
22
+ - - ">="
23
+ - !ruby/object:Gem::Version
24
+ version: "0"
25
+ type: :runtime
26
+ version_requirements: *id001
17
27
  description: A simple guard library for syncing local and remote directories via SFTP
18
28
  email:
19
29
  - vincentchu at gmail dot com