clearsight 0.0.4 → 0.0.5
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/bin/cs +1 -1
- data/lib/clearsight.rb +1 -0
- data/lib/clearsight/deploy.rb +10 -0
- data/lib/clearsight/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ade6c690137138348369f2ee4614b28ca8f2f9a0
|
4
|
+
data.tar.gz: ece7951de8a3c079e0f180416b6729233116edad
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d2228cdfb8d518137fe6cbf9dd5c8dbcd93e7b9f0e0eca34ada1a582b3bfb7ccc51aa352cfbdaf07bbb823f0b76d75f310e1f98693f2c0b735597228a0635cd9
|
7
|
+
data.tar.gz: 9bc9f3c85aed5c0f75422d2172dfde42751228367f31a7f84a7183de35faea18790771f42628692ee42efe5456cb692e299af56c29d3e76a897d11e1a6dbba02
|
data/bin/cs
CHANGED
@@ -13,7 +13,7 @@ class App
|
|
13
13
|
# them below in the show_help method.
|
14
14
|
main do |command, *args|
|
15
15
|
case command.to_s.to_sym
|
16
|
-
when :deploy then
|
16
|
+
when :deploy then Clearsight::Deploy.deploy(args)
|
17
17
|
when :update then update
|
18
18
|
when :help then show_help
|
19
19
|
else
|
data/lib/clearsight.rb
CHANGED
data/lib/clearsight/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: clearsight
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jamon Holmgren
|
@@ -115,6 +115,7 @@ files:
|
|
115
115
|
- features/step_definitions/clearsight_steps.rb
|
116
116
|
- features/support/env.rb
|
117
117
|
- lib/clearsight.rb
|
118
|
+
- lib/clearsight/deploy.rb
|
118
119
|
- lib/clearsight/version.rb
|
119
120
|
- test/tc_something.rb
|
120
121
|
homepage: http://www.clearsightstudio.com
|