voog-kit 0.5.1 → 0.5.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.markdown +8 -1
- data/lib/voog/dtk/version.rb +1 -1
- data/voog-kit.gemspec +1 -1
- metadata +12 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8863813d7301d1ef453c7cd7d5f00784669eaaa6
|
4
|
+
data.tar.gz: f1563e0b9a269ee60ee244d56d1b8c3fe209a3a0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 37296e044e868077970f32ed8f910009c85d0b5ebc12a98c2881d2120aaa1c8d3bf223c4446296d20b100068b0b5da5978ca4a640fc2aab9b37ad58c1f3561fe
|
7
|
+
data.tar.gz: 2c5c845654821f6119a61cb42d69434f4bdeb7ad741ab1ddfaa19adb254a301dd47ae07cae19893ed479ec80c910b715bc87824c04ddf3ed76e52f416d0029b2
|
data/README.markdown
CHANGED
@@ -98,7 +98,14 @@ As you've learned, pushing and pulling files is super easy, but it's still somet
|
|
98
98
|
have to do every time you change something and want to see the changes take place.
|
99
99
|
To counter this, `kit` provides a handy `watch` command that monitors your local files
|
100
100
|
and pushes them up if it sees any changes. The arguments to this command are, again, the
|
101
|
-
same as before. To stop watching,
|
101
|
+
same as before. To stop watching, press Ctrl+C.
|
102
|
+
|
103
|
+
### HTTP vs HTTPS
|
104
|
+
|
105
|
+
If your site is running on HTTPS, you can provide the protocol either as part of the hostname,
|
106
|
+
e.g `kit pull -h https://mysite.voog.com -t 0809d0c93c53438d435b2073d2cf2d22` — this sets the protocol
|
107
|
+
option to 'https' and also stores it in the configuration file just like other options — or as a separate
|
108
|
+
option: `kit pull -h mysite.voog.com -t 0809d0c93c53438d435b2073d2cf2d22 --protocol=https`.
|
102
109
|
|
103
110
|
## Commands
|
104
111
|
|
data/lib/voog/dtk/version.rb
CHANGED
data/voog-kit.gemspec
CHANGED
@@ -31,7 +31,7 @@ Gem::Specification.new do |spec|
|
|
31
31
|
spec.add_runtime_dependency 'listen', '~> 3.0'
|
32
32
|
spec.add_runtime_dependency 'git'
|
33
33
|
spec.add_runtime_dependency 'parseconfig'
|
34
|
-
spec.add_runtime_dependency 'voog_api', '
|
34
|
+
spec.add_runtime_dependency 'voog_api', '>= 0.0.11', '< 0.1'
|
35
35
|
spec.add_runtime_dependency 'colorize'
|
36
36
|
spec.add_runtime_dependency 'mime-types', '>= 1.25.1', '< 3.0'
|
37
37
|
spec.add_runtime_dependency 'rb-readline'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: voog-kit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mikk Pristavka
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2016-02-
|
12
|
+
date: 2016-02-10 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|
@@ -141,16 +141,22 @@ dependencies:
|
|
141
141
|
name: voog_api
|
142
142
|
requirement: !ruby/object:Gem::Requirement
|
143
143
|
requirements:
|
144
|
-
- - "
|
144
|
+
- - ">="
|
145
|
+
- !ruby/object:Gem::Version
|
146
|
+
version: 0.0.11
|
147
|
+
- - "<"
|
145
148
|
- !ruby/object:Gem::Version
|
146
|
-
version: 0.
|
149
|
+
version: '0.1'
|
147
150
|
type: :runtime
|
148
151
|
prerelease: false
|
149
152
|
version_requirements: !ruby/object:Gem::Requirement
|
150
153
|
requirements:
|
151
|
-
- - "
|
154
|
+
- - ">="
|
155
|
+
- !ruby/object:Gem::Version
|
156
|
+
version: 0.0.11
|
157
|
+
- - "<"
|
152
158
|
- !ruby/object:Gem::Version
|
153
|
-
version: 0.
|
159
|
+
version: '0.1'
|
154
160
|
- !ruby/object:Gem::Dependency
|
155
161
|
name: colorize
|
156
162
|
requirement: !ruby/object:Gem::Requirement
|