charter 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +72 -0
  3. data/lib/charter/version.rb +1 -1
  4. metadata +23 -12
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0c5abeed761de9bc53acf428da05b1068e550685
4
- data.tar.gz: 58ccee7a62ce7494e2f5620fe9f8cab0099203ce
3
+ metadata.gz: cbdd2201e293d31ca060ac5282cac57f145a851a
4
+ data.tar.gz: fbf9314129688e853c429ad1ad6c8c2d299cdd0b
5
5
  SHA512:
6
- metadata.gz: 4412db42a728ca20a700d3af0029ccdd9163fc7ff096c91ffb0cfb7609c1d8c0b802ca6a61abf14554ef5b0c1c7dbdb6c0b5733d49812a1318a68ae34b7096eb
7
- data.tar.gz: 617124eac38cb500c358dbd1162d8c85936ef00e8e9517c67e74d5b4bc6974915a722c59d964da205d84fcf71e9998b0a82566db6d806c110a3625a189b06973
6
+ metadata.gz: 6a43c9cc6978de481be21315028e628d3cd045597405c07869a0a96864d4ec2f63c1ac84b03bd4736f1e7c9a0433ec6a26e2783529da280f7e03e1f420e09905
7
+ data.tar.gz: 70be4ca1e6d7f946dc3ce3430de4610a0575792ac2d5afeffec1f859a8f26d754e5cfdd182384ac75254e1b2adf3f493dee40a2f369214c2001b0d65a3cc1511
data/README.md ADDED
@@ -0,0 +1,72 @@
1
+ Session
2
+ =======
3
+
4
+ Command line interface for creating a test charter exported in markdown.
5
+
6
+ #Installation
7
+ [sudo] gem install charter
8
+
9
+ After installing the gem, create a ~/.charterrc file and add the following:
10
+
11
+ ---
12
+ session_folder: "/Where/The/Charters/Will/Save/To"
13
+ tester: Your Name Here
14
+ #Usage
15
+ charter [global options] command [command options] [arguments...]
16
+ ###Creating a new charter
17
+ charter start "Charter Name"
18
+
19
+ This will create a new charter in the specified folder specified in your ~/.charterrc file
20
+
21
+ ###Adding environment details
22
+ charter env "Windows 7, IE 10, point at QA"
23
+ ###Adding a purpose for the charter
24
+ charter purpose "I will be testing the login page"
25
+ ###Adding a scenario
26
+ charter scenario "Leave both fields blank and click login"
27
+
28
+ or
29
+
30
+ charter s "Leave both fields blank and click login"
31
+ ###Adding a defect
32
+ charter bug "User able to login without inputting password"
33
+ ###Finishing the charter
34
+ charter finish
35
+
36
+ This will removing any remaining place holders and fill in the end time
37
+
38
+ ##The finished charter will look something like this:
39
+ ---
40
+
41
+ #Exploratory Test Charter
42
+
43
+ Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
44
+
45
+ ##Environment
46
+
47
+ OS X, Chrome
48
+
49
+ ##Length
50
+ Start Time: 03/31/2014 21:20
51
+
52
+ End Time: 03/31/2014 21:22
53
+
54
+ ##Tester
55
+ Mark Grossman
56
+
57
+ ##Scenarios:
58
+ 1. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
59
+ 1. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
60
+
61
+
62
+ ##Defects Found
63
+ 1. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
64
+ 1. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
65
+
66
+ ---
67
+
68
+ ####TODO:
69
+ - Refine code structure
70
+ - Release to RubyGems.org
71
+ - Add more fields to charter
72
+ - Add optional fields
@@ -1,3 +1,3 @@
1
1
  module Charter
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: charter
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
  - Mark Grossman
@@ -14,42 +14,42 @@ dependencies:
14
14
  name: rake
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ">="
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
19
  version: '0'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ">="
24
+ - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rdoc
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ">="
31
+ - - "~>"
32
32
  - !ruby/object:Gem::Version
33
33
  version: '0'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ">="
38
+ - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: aruba
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - ">="
45
+ - - "~>"
46
46
  - !ruby/object:Gem::Version
47
47
  version: '0'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - ">="
52
+ - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
55
  - !ruby/object:Gem::Dependency
@@ -70,6 +70,9 @@ dependencies:
70
70
  name: redcarpet
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '3.1'
73
76
  - - ">="
74
77
  - !ruby/object:Gem::Version
75
78
  version: 3.1.1
@@ -77,30 +80,38 @@ dependencies:
77
80
  prerelease: false
78
81
  version_requirements: !ruby/object:Gem::Requirement
79
82
  requirements:
83
+ - - "~>"
84
+ - !ruby/object:Gem::Version
85
+ version: '3.1'
80
86
  - - ">="
81
87
  - !ruby/object:Gem::Version
82
88
  version: 3.1.1
83
- description:
89
+ description: A tool for creating exploratory test session charters
84
90
  email: mark@testwith.me
85
91
  executables:
86
92
  - charter
87
93
  extensions: []
88
- extra_rdoc_files: []
94
+ extra_rdoc_files:
95
+ - README.md
89
96
  files:
97
+ - README.md
90
98
  - bin/charter
91
99
  - lib/charter.rb
92
100
  - lib/charter/charter_template.md
93
101
  - lib/charter/doc.rb
94
102
  - lib/charter/version.rb
95
103
  homepage: http://testwith.me
96
- licenses: []
104
+ licenses:
105
+ - MIT
97
106
  metadata: {}
98
107
  post_install_message:
99
108
  rdoc_options:
100
109
  - "--title"
101
110
  - charter
102
111
  - "--main"
103
- - README.rdoc
112
+ - README.md
113
+ - "--markup"
114
+ - markdown
104
115
  - "-ri"
105
116
  require_paths:
106
117
  - lib
@@ -120,5 +131,5 @@ rubyforge_project:
120
131
  rubygems_version: 2.2.2
121
132
  signing_key:
122
133
  specification_version: 4
123
- summary: A CLI for creating a session based testing charter
134
+ summary: A command line tool for creating a session based testing charter
124
135
  test_files: []