checkcheckit 0.1.3 → 0.1.4
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.
- data/README.md +5 -3
- data/lib/checkcheckit/console.rb +2 -1
- data/lib/checkcheckit/version.rb +1 -1
- metadata +3 -3
data/README.md
CHANGED
@@ -32,7 +32,7 @@ Everything beneath a step is that step's body or description.
|
|
32
32
|
Goodbye!
|
33
33
|
|
34
34
|
# start a list, open it in your browser, and skip the CLI interaction
|
35
|
-
$ check start groceries --live --web --open
|
35
|
+
$ check start groceries --live --web-only --open
|
36
36
|
$ check start groceries --live --no-cli -O
|
37
37
|
Live at URL: http://checkcheckit.herokuapp.com/4f24b9d933d5467ec913461b8da3f952dbe724cb
|
38
38
|
|
@@ -62,11 +62,11 @@ If there are multiple checklists with the same name use the format `folder/check
|
|
62
62
|
When you iterate through a checklist you can just type "enter", "y", or "+" to confirm a step and "no" or "-" to
|
63
63
|
fail one.
|
64
64
|
|
65
|
-
You can
|
65
|
+
You can use the `--notes` flag to enter optional notes.
|
66
66
|
|
67
67
|
For example:
|
68
68
|
|
69
|
-
$ check start deploy
|
69
|
+
$ check start deploy --notes
|
70
70
|
|-------| Step 1: Pull everything from git
|
71
71
|
> git pull origin
|
72
72
|
Check: <enter>
|
@@ -129,6 +129,8 @@ the address(es) will receive an email with a link to a web version of the checkl
|
|
129
129
|
## TODO
|
130
130
|
|
131
131
|
- resume a run locally from URL
|
132
|
+
- push notes to web
|
133
|
+
- emit pass/fail and colorize
|
132
134
|
- post to campfire
|
133
135
|
|
134
136
|
## Contributing
|
data/lib/checkcheckit/console.rb
CHANGED
@@ -3,6 +3,7 @@ require 'uri'
|
|
3
3
|
|
4
4
|
# Uses the "big bowl of pudding' architecture
|
5
5
|
class CheckCheckIt::Console
|
6
|
+
DEFAULT_URL = 'http://checkcheckit.herokuapp.com/'
|
6
7
|
attr_accessor :list_dir
|
7
8
|
attr_accessor :out_stream, :in_stream, :web_socket
|
8
9
|
|
@@ -158,7 +159,7 @@ class CheckCheckIt::Console
|
|
158
159
|
end
|
159
160
|
|
160
161
|
def web_service_url
|
161
|
-
ENV['CHECKCHECKIT_URL']
|
162
|
+
ENV['CHECKCHECKIT_URL'] || DEFAULT_URL
|
162
163
|
end
|
163
164
|
|
164
165
|
def post_check(list_id, step_id)
|
data/lib/checkcheckit/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: checkcheckit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -115,7 +115,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
115
115
|
version: '0'
|
116
116
|
segments:
|
117
117
|
- 0
|
118
|
-
hash: -
|
118
|
+
hash: -1886666442693068607
|
119
119
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
120
120
|
none: false
|
121
121
|
requirements:
|
@@ -124,7 +124,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
124
124
|
version: '0'
|
125
125
|
segments:
|
126
126
|
- 0
|
127
|
-
hash: -
|
127
|
+
hash: -1886666442693068607
|
128
128
|
requirements: []
|
129
129
|
rubyforge_project:
|
130
130
|
rubygems_version: 1.8.23
|