demotape 0.0.0.pre.0 → 0.0.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 01eb35c4c1b1dfacbcc2bf00453b27d6dc3a3cfff0807c23880375fcccec45cf
4
- data.tar.gz: 8754280c0634df149085cd7362a50a187fc44349dac77bc9251014aa22939e36
3
+ metadata.gz: 147d51a7d46ab355a5d0e12bb5e0a40e23e6d7d7c3867d4ef93e1131484e6380
4
+ data.tar.gz: aa995babfea3d396b868361e9aeda97df8c90892f67b4cf4da7123dfa7abbb6c
5
5
  SHA512:
6
- metadata.gz: f66c6ae8b0dfbe6373f00a2f0e1986195a2b1228a3f0bcf778ed9a367dc3615c5d8336d3c12adde1ca09659659f6e302c1deef712b73fcbf4d062a34aa74806d
7
- data.tar.gz: 8e6c4a908ef2f09f243a80dd6e4a69a5ccdcbc34c4df553ecbf1acb04b8082de963f85088e47bd8e39652d435cf37d106cf8c0a591a6dcc0e7835bf6ad6e0e76
6
+ metadata.gz: 8284384e1d08f3ca3401424cc44c06f08f1607fdae1335f65dc6a54d03c763876298d22e8699cb8f33f480fd308baa4c68d9c512bd0df217aadb83f975da81f7
7
+ data.tar.gz: d9051421159a3ddec57826ac06b15d6f9b74df9832ee1d77dc1f01821f6dd4f8b06aaa651da69083fff39b7cf434ae1e6e6266fcaa0ffcaa524721bbffb597c9
data/CHANGELOG.md CHANGED
@@ -11,6 +11,6 @@ Prefix your message with one of the following:
11
11
  - [Security] in case of vulnerabilities.
12
12
  -->
13
13
 
14
- ## Unreleased
14
+ ## v0.0.0
15
15
 
16
16
  - Initial release.
data/README.md CHANGED
@@ -117,10 +117,7 @@ for typing multiple commands or complex text that spans several lines.
117
117
  **TypeFile** - Reads file and types its text into the terminal
118
118
 
119
119
  ```demotape
120
- TypeFile "text"
121
- TypeFile@500ms "slow typing"
122
- TypeFile@2s "very slow"
123
- TypeFile@10ms "fast typing"
120
+ TypeFile "path/to/file"
124
121
  ```
125
122
 
126
123
  #### Keys and Key Combinations
data/demotape.gemspec CHANGED
@@ -9,12 +9,12 @@ Gem::Specification.new do |spec|
9
9
  spec.email = ["me@fnando.com"]
10
10
  spec.metadata = {"rubygems_mfa_required" => "true"}
11
11
 
12
- spec.summary = "Record terminal sessions using ttyd."
12
+ spec.summary = "Record terminal sessions from your CLI tools"
13
13
  spec.description = spec.summary
14
14
  spec.license = "MIT"
15
15
  spec.required_ruby_version = Gem::Requirement.new(">= 3.4.0")
16
16
 
17
- github_url = "https://github.com/fnando/demo_tape"
17
+ github_url = "https://github.com/fnando/demotape"
18
18
  github_tree_url = "#{github_url}/tree/v#{spec.version}"
19
19
 
20
20
  spec.homepage = github_url
@@ -40,7 +40,6 @@ Gem::Specification.new do |spec|
40
40
  spec.add_dependency "chunky_png"
41
41
  spec.add_dependency "json"
42
42
  spec.add_dependency "racc"
43
- spec.add_dependency "rack"
44
43
  spec.add_dependency "selenium-webdriver"
45
44
  spec.add_dependency "shellwords"
46
45
  spec.add_dependency "thor"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DemoTape
4
- VERSION = "0.0.0.pre.0"
4
+ VERSION = "0.0.0"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: demotape
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.0.pre.0
4
+ version: 0.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nando Vieira
@@ -79,20 +79,6 @@ dependencies:
79
79
  - - ">="
80
80
  - !ruby/object:Gem::Version
81
81
  version: '0'
82
- - !ruby/object:Gem::Dependency
83
- name: rack
84
- requirement: !ruby/object:Gem::Requirement
85
- requirements:
86
- - - ">="
87
- - !ruby/object:Gem::Version
88
- version: '0'
89
- type: :runtime
90
- prerelease: false
91
- version_requirements: !ruby/object:Gem::Requirement
92
- requirements:
93
- - - ">="
94
- - !ruby/object:Gem::Version
95
- version: '0'
96
82
  - !ruby/object:Gem::Dependency
97
83
  name: selenium-webdriver
98
84
  requirement: !ruby/object:Gem::Requirement
@@ -233,7 +219,7 @@ dependencies:
233
219
  - - ">="
234
220
  - !ruby/object:Gem::Version
235
221
  version: '0'
236
- description: Record terminal sessions using ttyd.
222
+ description: Record terminal sessions from your CLI tools
237
223
  email:
238
224
  - me@fnando.com
239
225
  executables:
@@ -1178,17 +1164,17 @@ files:
1178
1164
  - lib/demo_tape/ttyd.rb
1179
1165
  - lib/demo_tape/version.rb
1180
1166
  - lib/demotape.rb
1181
- homepage: https://github.com/fnando/demo_tape
1167
+ homepage: https://github.com/fnando/demotape
1182
1168
  licenses:
1183
1169
  - MIT
1184
1170
  metadata:
1185
1171
  rubygems_mfa_required: 'true'
1186
- homepage_uri: https://github.com/fnando/demo_tape
1187
- bug_tracker_uri: https://github.com/fnando/demo_tape/issues
1188
- source_code_uri: https://github.com/fnando/demo_tape/tree/v0.0.0.pre.0
1189
- changelog_uri: https://github.com/fnando/demo_tape/tree/v0.0.0.pre.0/CHANGELOG.md
1190
- documentation_uri: https://github.com/fnando/demo_tape/tree/v0.0.0.pre.0/README.md
1191
- license_uri: https://github.com/fnando/demo_tape/tree/v0.0.0.pre.0/LICENSE.md
1172
+ homepage_uri: https://github.com/fnando/demotape
1173
+ bug_tracker_uri: https://github.com/fnando/demotape/issues
1174
+ source_code_uri: https://github.com/fnando/demotape/tree/v0.0.0
1175
+ changelog_uri: https://github.com/fnando/demotape/tree/v0.0.0/CHANGELOG.md
1176
+ documentation_uri: https://github.com/fnando/demotape/tree/v0.0.0/README.md
1177
+ license_uri: https://github.com/fnando/demotape/tree/v0.0.0/LICENSE.md
1192
1178
  rdoc_options: []
1193
1179
  require_paths:
1194
1180
  - lib
@@ -1205,5 +1191,5 @@ required_rubygems_version: !ruby/object:Gem::Requirement
1205
1191
  requirements: []
1206
1192
  rubygems_version: 3.6.9
1207
1193
  specification_version: 4
1208
- summary: Record terminal sessions using ttyd.
1194
+ summary: Record terminal sessions from your CLI tools
1209
1195
  test_files: []