tugboat 0.0.1

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.
metadata ADDED
@@ -0,0 +1,144 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: tugboat
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Jack Pearkes
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-04-14 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: thor
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: 0.18.1
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ version: 0.18.1
30
+ - !ruby/object:Gem::Dependency
31
+ name: digital_ocean
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ~>
36
+ - !ruby/object:Gem::Version
37
+ version: 1.0.1
38
+ type: :runtime
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ~>
44
+ - !ruby/object:Gem::Version
45
+ version: 1.0.1
46
+ - !ruby/object:Gem::Dependency
47
+ name: middleware
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ~>
52
+ - !ruby/object:Gem::Version
53
+ version: 0.1.0
54
+ type: :runtime
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ~>
60
+ - !ruby/object:Gem::Version
61
+ version: 0.1.0
62
+ - !ruby/object:Gem::Dependency
63
+ name: activesupport
64
+ requirement: !ruby/object:Gem::Requirement
65
+ none: false
66
+ requirements:
67
+ - - ! '>='
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ type: :runtime
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ! '>='
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ description: A command line tool for interacting with your DigitalOcean droplets.
79
+ email:
80
+ - jackpearkes@gmail.com
81
+ executables:
82
+ - tugboat
83
+ extensions: []
84
+ extra_rdoc_files: []
85
+ files:
86
+ - .gitignore
87
+ - CONTRIBUTING.md
88
+ - Gemfile
89
+ - LICENSE.md
90
+ - README.md
91
+ - Rakefile
92
+ - bin/tugboat
93
+ - lib/tugboat.rb
94
+ - lib/tugboat/cli.rb
95
+ - lib/tugboat/config.rb
96
+ - lib/tugboat/middleware.rb
97
+ - lib/tugboat/middleware/ask_for_credentials.rb
98
+ - lib/tugboat/middleware/base.rb
99
+ - lib/tugboat/middleware/check_configuration.rb
100
+ - lib/tugboat/middleware/check_credentials.rb
101
+ - lib/tugboat/middleware/confirm_action.rb
102
+ - lib/tugboat/middleware/create_droplet.rb
103
+ - lib/tugboat/middleware/destroy_droplet.rb
104
+ - lib/tugboat/middleware/find_droplet.rb
105
+ - lib/tugboat/middleware/halt_droplet.rb
106
+ - lib/tugboat/middleware/info_droplet.rb
107
+ - lib/tugboat/middleware/inject_client.rb
108
+ - lib/tugboat/middleware/inject_configuration.rb
109
+ - lib/tugboat/middleware/list_droplets.rb
110
+ - lib/tugboat/middleware/list_images.rb
111
+ - lib/tugboat/middleware/restart_droplet.rb
112
+ - lib/tugboat/middleware/snapshot_droplet.rb
113
+ - lib/tugboat/middleware/ssh_droplet.rb
114
+ - lib/tugboat/version.rb
115
+ - spec/config_spec.rb
116
+ - spec/spec_helper.rb
117
+ - tugboat.gemspec
118
+ homepage: https://github.com/pearkes/tugboat
119
+ licenses: []
120
+ post_install_message:
121
+ rdoc_options: []
122
+ require_paths:
123
+ - lib
124
+ required_ruby_version: !ruby/object:Gem::Requirement
125
+ none: false
126
+ requirements:
127
+ - - ! '>='
128
+ - !ruby/object:Gem::Version
129
+ version: '0'
130
+ required_rubygems_version: !ruby/object:Gem::Requirement
131
+ none: false
132
+ requirements:
133
+ - - ! '>='
134
+ - !ruby/object:Gem::Version
135
+ version: '0'
136
+ requirements: []
137
+ rubyforge_project:
138
+ rubygems_version: 1.8.24
139
+ signing_key:
140
+ specification_version: 3
141
+ summary: A command line tool for interacting with your DigitalOcean droplets.
142
+ test_files:
143
+ - spec/config_spec.rb
144
+ - spec/spec_helper.rb