clearsight 0.0.11 → 0.0.12
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 +3 -3
- data/bin/cs +0 -7
- data/lib/clearsight/version.rb +1 -1
- metadata +2 -3
- data/README.rdoc +0 -19
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4607e294ad173a6273284c3ecc22d2196ff75c6c
|
|
4
|
+
data.tar.gz: 80d4b336b219c27781769874418aabdbc302373f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a1ce7469ab507451839cd560a6e7eb0e321f0f959dbdf7ef729c8bccbb962a5f58936d2b07af907c35e16a5665fd0120d506407cff5636ce13d617883105374f
|
|
7
|
+
data.tar.gz: 23ad3bf52290dc85bcb1090c41ca58715bad4ccb09d013499910461321b0b13a4feae314a58e4c337380f328cfd6907a0be1426d8ec15ad16d0aeec1a3a048a9
|
data/README.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
#
|
|
1
|
+
# ClearSight
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
ClearSight Studio's swiss army knife. Common utilities for ClearSight Studio, a web and mobile app development studio in Portland, OR/Vancouver, WA.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
7
|
Add this line to your application's Gemfile:
|
|
8
8
|
|
|
9
|
-
gem
|
|
9
|
+
gem "clearsight", "~> 0.0.9"
|
|
10
10
|
|
|
11
11
|
And then execute:
|
|
12
12
|
|
data/bin/cs
CHANGED
|
@@ -18,7 +18,6 @@ class App
|
|
|
18
18
|
when :help then show_help
|
|
19
19
|
when :killrails then killrails(args.first || 3000)
|
|
20
20
|
when :sshify then sshify(args.first, options[:key] || "id_rsa.pub")
|
|
21
|
-
when :compose then compose(args.first)
|
|
22
21
|
else
|
|
23
22
|
puts "Invalid command."
|
|
24
23
|
show_help
|
|
@@ -35,8 +34,6 @@ class App
|
|
|
35
34
|
puts " Kills a rails server running on the given port. Only works on Linux (so far)."
|
|
36
35
|
puts " sshify host <-k keyname.pub>"
|
|
37
36
|
puts " Installs your SSH public key (id_rsa.pub unless you pass a different one) to a remote server (user@host.com)."
|
|
38
|
-
puts " compose <appname>"
|
|
39
|
-
puts " Shortcut for Rails Composer."
|
|
40
37
|
puts " update"
|
|
41
38
|
puts " Updates the gem. Same as `gem update clearsight`."
|
|
42
39
|
end
|
|
@@ -68,10 +65,6 @@ class App
|
|
|
68
65
|
yield
|
|
69
66
|
@t.stop
|
|
70
67
|
end
|
|
71
|
-
|
|
72
|
-
def self.compose(appname)
|
|
73
|
-
sh "rails new #{appname} -m https://raw.github.com/RailsApps/rails-composer/master/composer.rb"
|
|
74
|
-
end
|
|
75
68
|
|
|
76
69
|
arg :args, :optional
|
|
77
70
|
|
data/lib/clearsight/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
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.12
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jamon Holmgren
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-10-
|
|
11
|
+
date: 2013-10-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -121,7 +121,6 @@ files:
|
|
|
121
121
|
- Gemfile.lock
|
|
122
122
|
- LICENSE.txt
|
|
123
123
|
- README.md
|
|
124
|
-
- README.rdoc
|
|
125
124
|
- Rakefile
|
|
126
125
|
- bin/cs
|
|
127
126
|
- clearsight.gemspec
|
data/README.rdoc
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
= clearsight - DESCRIBE YOUR GEM
|
|
2
|
-
|
|
3
|
-
Author:: YOUR NAME (YOUR EMAIL)
|
|
4
|
-
Copyright:: Copyright (c) 2013 YOUR NAME
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
DESCRIBE YOUR GEM HERE
|
|
8
|
-
|
|
9
|
-
== Links
|
|
10
|
-
|
|
11
|
-
* {Source on Github}[LINK TO GITHUB]
|
|
12
|
-
* RDoc[LINK TO RDOC.INFO]
|
|
13
|
-
|
|
14
|
-
== Install
|
|
15
|
-
|
|
16
|
-
== Examples
|
|
17
|
-
|
|
18
|
-
== Contributing
|
|
19
|
-
|