vagrant-sptsync 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +15 -0
  2. data/lib/plugin.rb +18 -0
  3. metadata +73 -0
checksums.yaml ADDED
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ YzZhOTM3ZTJlM2Q3MDA1MTdkOWM1NWMxMzhkMmQ1MmVlZWQ5ZGU2OQ==
5
+ data.tar.gz: !binary |-
6
+ OTVkYWE0MThhZjViZmFkYTc3ZDQ0MmE2MjAzNDg3NjhjNWVmY2MxNg==
7
+ SHA512:
8
+ metadata.gz: !binary |-
9
+ ODNiMDVmOWM1MzZmNGJkNWM3ZTk3NjlmMGM2YmI2YTQxNDUxMDg5ZmE5NzUx
10
+ NGMxMDZjOTIzZGQ4ZDgyYzA4ZWM2ZmE5MmJkNTU3YmRhZTllYzZmZDAwZjUy
11
+ MDJhMDIwNjQ2MmVjODNjOWU0OTFmMDJlMDM0NzM0YzE0OGY5YmY=
12
+ data.tar.gz: !binary |-
13
+ YmU5ZWYzZjVhYmM2YmM4YWM4MDAzYmIzNzc0MzU0YjFlOWM2MjcyNDIwNDU5
14
+ NmM2ZjVkOGY2NTIzYTkzZWUwZDg4NzhmY2ZkMGRmOGMzNmU4OWY0MGZjNTcx
15
+ ZDE2OGI2NzVlNTRjNGFmN2NhNjY4NjMyODJiNDljZmVmZDI5ODg=
data/lib/plugin.rb ADDED
@@ -0,0 +1,18 @@
1
+ require "vagrant"
2
+
3
+ module VagrantPlugins
4
+ module SptSync
5
+ class Plugin < Vagrant.plugin("2")
6
+ name "vagrant-sptsync"
7
+ description <<-DESC
8
+ The `suspend` command suspends execution and puts it to sleep.
9
+ The command `resume` returns it to running status.
10
+ DESC
11
+
12
+ command("sptsync") do
13
+ require File.expand_path("../command", __FILE__)
14
+ Command
15
+ end
16
+ end
17
+ end
18
+ end
metadata ADDED
@@ -0,0 +1,73 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: vagrant-sptsync
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Sean Sehr
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-02-24 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '1.5'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.5'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ! '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ! '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: Gem to sync
42
+ email:
43
+ - sean.sehr@smashingideas.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - ./lib/plugin.rb
49
+ homepage: ''
50
+ licenses:
51
+ - MIT
52
+ metadata: {}
53
+ post_install_message:
54
+ rdoc_options: []
55
+ require_paths:
56
+ - lib
57
+ required_ruby_version: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ required_rubygems_version: !ruby/object:Gem::Requirement
63
+ requirements:
64
+ - - ! '>='
65
+ - !ruby/object:Gem::Version
66
+ version: '0'
67
+ requirements: []
68
+ rubyforge_project:
69
+ rubygems_version: 2.2.2
70
+ signing_key:
71
+ specification_version: 4
72
+ summary: Gem to sync
73
+ test_files: []