serverkit 0.6.2 → 0.6.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 40403ed3991e3dae313836b16ffe5ad523e9e924
4
- data.tar.gz: 4520aaaff4ab249b9835f0a86cdd9356a629dfe6
3
+ metadata.gz: a38ca0a6342e6322decc3c569cbb23b0f2d7e44d
4
+ data.tar.gz: 813cc6d97e0c148d5cd54d41522ddde2b3bd072e
5
5
  SHA512:
6
- metadata.gz: 9d3e9191d02228ea58997d78de98362e1e5da3aebc41cc1617e77088336db9753684886e973768d1b363dccc8112a80eb07f6940cf2cb2c5822fab0d8a149db1
7
- data.tar.gz: 8524cc26214791599b074d18d98e19c06da654b9c90c32c7575009cfc64eb25a53f3936f0d797f4f489d538a04bd5e0c0feb7900fe243390de0a7b46340b2212
6
+ metadata.gz: bcd9bcabe94786eec32a64992f29f36993e15d41ff9e9408a4c948ddfd28856d11d576b72a25bb145ab8334cff161437489aab8f0971e5eeb92ca2f7f8339040
7
+ data.tar.gz: 6e371a27003b992d393643da30e73f13c88243ba30c4e5feb0f772bddd55db52d063930f0ed2e0202ad0f435e3c7ea4b8bffe74140a1b45686d73fb77460e6b8
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 0.6.3
2
+ - Add :request_pty option on SSH backend
3
+
1
4
  ## 0.6.2
2
5
  - Add AtLeastOneOfValidator
3
6
 
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Serverkit [![Build Status](https://travis-ci.org/r7kamura/serverkit.svg)](https://travis-ci.org/r7kamura/serverkit) [![Code Climate](https://codeclimate.com/github/r7kamura/serverkit/badges/gpa.svg)](https://codeclimate.com/github/r7kamura/serverkit)
1
+ # Serverkit [![Build Status](https://travis-ci.org/serverkit/serverkit.svg)](https://travis-ci.org/serverkit/serverkit) [![Code Climate](https://codeclimate.com/github/serverkit/serverkit/badges/gpa.svg)](https://codeclimate.com/github/serverkit/serverkit)
2
2
  Assemble servers from your recipe.
3
3
 
4
4
  ![Server (thx 1041uuu)](/images/server.png)
@@ -40,11 +40,11 @@ $ serverkit apply recipe.yml
40
40
  - [template](/doc/resource_template.md)
41
41
  - [user](/doc/resource_user.md)
42
42
  - [Plug-in](/doc/plug_in.md)
43
- - [serverkit-atom](https://github.com/r7kamura/serverkit-atom)
44
- - [serverkit-defaults](https://github.com/r7kamura/serverkit-defaults)
45
- - [serverkit-homebrew](https://github.com/r7kamura/serverkit-homebrew)
46
- - [serverkit-karabiner](https://github.com/r7kamura/serverkit-karabiner)
47
- - [serverkit-rbenv](https://github.com/r7kamura/serverkit-rbenv)
43
+ - [serverkit-atom](https://github.com/serverkit/serverkit-atom)
44
+ - [serverkit-defaults](https://github.com/serverkit/serverkit-defaults)
45
+ - [serverkit-homebrew](https://github.com/serverkit/serverkit-homebrew)
46
+ - [serverkit-karabiner](https://github.com/serverkit/serverkit-karabiner)
47
+ - [serverkit-rbenv](https://github.com/serverkit/serverkit-rbenv)
48
48
  - [serverkit-login_items](https://github.com/take/serverkit-login_items)
49
49
  - [Vagrant integration](/doc/vagrant_integration.md)
50
50
 
data/doc/install.md CHANGED
@@ -31,7 +31,7 @@ you can `git clone` the source code and `rake install` it.
31
31
  bundler and git are both required in this method.
32
32
 
33
33
  ```
34
- $ git clone https://github.com/r7kamura/serverkit.git
34
+ $ git clone https://github.com/serverkit/serverkit.git
35
35
  $ cd serverkit
36
36
  $ bundle install
37
37
  $ bundle exec rake install
data/doc/plug_in.md CHANGED
@@ -2,7 +2,7 @@
2
2
  A serverkit plug-in is provided as a gem.
3
3
  Serverkit calls `Bundler.require(:default)` before running an action,
4
4
  so you can add any behaviors to serverkit via gems defined in Gemfile.
5
- For example, [serverkit-rbenv](https://github.com/r7kamura/serverkit-rbenv) gem
5
+ For example, [serverkit-rbenv](https://github.com/serverkit/serverkit-rbenv) gem
6
6
  adds a custom resource type named `rbenv_ruby` by defining `Serverkit::Resources::RbenvRuby` class.
7
7
  Serverkit finds `Serverkit::Resources::FooBar` resource class from `type: "foo_bar"`.
8
8
 
@@ -15,7 +15,7 @@ with same content with a expanded result of `files/authorized_keys.erb`.
15
15
 
16
16
  ```yaml
17
17
  resources:
18
- - type: remote_file
18
+ - type: template
19
19
  destination: /home/foo/.ssh/authorized_keys
20
20
  source: files/authorized_keys.erb
21
21
  mode: 600
@@ -25,6 +25,7 @@ module Serverkit
25
25
  @specinfra_backend ||= ::Specinfra::Backend::Ssh.new(
26
26
  host: host,
27
27
  ssh_options: ssh_options,
28
+ request_pty: true,
28
29
  )
29
30
  end
30
31
 
@@ -1,3 +1,3 @@
1
1
  module Serverkit
2
- VERSION = "0.6.2"
2
+ VERSION = "0.6.3"
3
3
  end
data/serverkit.gemspec CHANGED
@@ -8,7 +8,7 @@ Gem::Specification.new do |spec|
8
8
  spec.authors = ["Ryo Nakamura"]
9
9
  spec.email = ["r7kamura@gmail.com"]
10
10
  spec.summary = "Assemble servers from your recipe."
11
- spec.homepage = "https://github.com/r7kamura/serverkit"
11
+ spec.homepage = "https://github.com/serverkit/serverkit"
12
12
  spec.license = "MIT"
13
13
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
14
14
  spec.bindir = "bin"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: serverkit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.2
4
+ version: 0.6.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryo Nakamura
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-05-11 00:00:00.000000000 Z
11
+ date: 2015-08-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activemodel
@@ -292,7 +292,7 @@ files:
292
292
  - lib/serverkit/version.rb
293
293
  - lib/type_validator.rb
294
294
  - serverkit.gemspec
295
- homepage: https://github.com/r7kamura/serverkit
295
+ homepage: https://github.com/serverkit/serverkit
296
296
  licenses:
297
297
  - MIT
298
298
  metadata: {}