fleetctl 0.1.2 → 0.1.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.
- checksums.yaml +4 -4
- data/README.md +4 -3
- data/fleetctl.gemspec +1 -1
- data/lib/fleetctl/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7e074740c26eb9031e20cfd72fab5fbc4f14e1df
|
|
4
|
+
data.tar.gz: 2c706672d5b5b79c44b29e539a80926ff7910d68
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5cf01a2e877c95b5e4cec35c84056b1022af53b55db67e8a1d0e71bf843061edc44dea712fea49b61e7ebcc36713965fd855ae09c154b09cd2e90394b15ebf33
|
|
7
|
+
data.tar.gz: c9854cc2e63c71beb7e797e8ce7b171431ca52ccdae29972b17731ec7557bef23d11adebdb5b58564d6e6cb944d350ee4c0b700fd9f4b2e497fda6922769c278
|
data/README.md
CHANGED
|
@@ -6,9 +6,9 @@ Warning: This gem is essentially a wrapper for an executable that is still in al
|
|
|
6
6
|
|
|
7
7
|
## Installation and Configuration
|
|
8
8
|
|
|
9
|
-
Add Fleetctl to your Gemfile:
|
|
9
|
+
Add Fleetctl to your Gemfile (I recommend locking yourself to an exact version for now. I may change anything at any time):
|
|
10
10
|
|
|
11
|
-
gem 'fleetctl',
|
|
11
|
+
gem 'fleetctl', '0.1.3'
|
|
12
12
|
|
|
13
13
|
And `$ bundle install`
|
|
14
14
|
|
|
@@ -88,6 +88,7 @@ To get a specific unit by name:
|
|
|
88
88
|
=> #<Fleet::Unit...>
|
|
89
89
|
|
|
90
90
|
The `:start`, `:load`, and `:submit` methods all operate on one or more `File` objects (fleet unitfiles).
|
|
91
|
+
|
|
91
92
|
unitfile = File.open('my-unit.service')
|
|
92
93
|
fleet.submit(unitfile)
|
|
93
94
|
=> true
|
|
@@ -110,7 +111,7 @@ A `Fleet::Machine` represents a machine which is part of a fleet cluster.
|
|
|
110
111
|
|
|
111
112
|
## Contributing
|
|
112
113
|
|
|
113
|
-
1. Fork it ( https://github.com/
|
|
114
|
+
1. Fork it ( https://github.com/cloudspace/fleetctl/fork )
|
|
114
115
|
2. Create your feature branch (`git checkout -b my-new-feature`)
|
|
115
116
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
|
116
117
|
4. Push to the branch (`git push origin my-new-feature`)
|
data/fleetctl.gemspec
CHANGED
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
spec.email = ['jlauer@cloudspace.com']
|
|
11
11
|
spec.summary = %q{A simple wrapper for fleetctl}
|
|
12
12
|
spec.description = %q{Allows controlling fleet clusters via a ruby API}
|
|
13
|
-
spec.homepage = 'https://github.com/
|
|
13
|
+
spec.homepage = 'https://github.com/cloudspace/ruby-fleetctl'
|
|
14
14
|
spec.license = 'MIT'
|
|
15
15
|
|
|
16
16
|
spec.files = `git ls-files -z`.split("\x0")
|
data/lib/fleetctl/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fleetctl
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Josh Lauer
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-06-
|
|
11
|
+
date: 2014-06-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -108,7 +108,7 @@ files:
|
|
|
108
108
|
- lib/fleetctl/runner/ssh.rb
|
|
109
109
|
- lib/fleetctl/table_parser.rb
|
|
110
110
|
- lib/fleetctl/version.rb
|
|
111
|
-
homepage: https://github.com/
|
|
111
|
+
homepage: https://github.com/cloudspace/ruby-fleetctl
|
|
112
112
|
licenses:
|
|
113
113
|
- MIT
|
|
114
114
|
metadata: {}
|