clearsight 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 08a659f49e9c6d19cd862c9ee10137dc41a3f432
4
- data.tar.gz: 63781ec9865bf54416422131b587d966327672c2
3
+ metadata.gz: ade6c690137138348369f2ee4614b28ca8f2f9a0
4
+ data.tar.gz: ece7951de8a3c079e0f180416b6729233116edad
5
5
  SHA512:
6
- metadata.gz: b02784a5ef76f3bf26947f9af142d644bf80109f0cc4b1f1eedffd60f22ec713b333d208db2322d4d9ae70d9b81e6dc09a11d4591de8528eb78ba1cb30dca2cf
7
- data.tar.gz: 642096f69b1cfaf175effebb647c84e45d0bfbe705b555b0213190436429fdc61898a9f1d52b8341bf651928bde77ef9a799ea6b6ea9d1549c3dc5f5de2b77a9
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 puts "Deploying to #{args.first}..."
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
@@ -1,4 +1,5 @@
1
1
  require "clearsight/version"
2
+ require "clearsight/deploy"
2
3
 
3
4
  module Clearsight
4
5
  # Your code goes here...
@@ -0,0 +1,10 @@
1
+ module Clearsight
2
+ class Deploy
3
+ include Methadone::SH
4
+
5
+ def self.deploy(args)
6
+ puts "Deploying...actually, not, because it's not set up yet. :/"
7
+ puts "ARGS: #{args.join(", ")}"
8
+ end
9
+ end
10
+ end
@@ -1,3 +1,3 @@
1
1
  module Clearsight
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
  end
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
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