open 0.1.3
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.
Potentially problematic release.
This version of open might be problematic. Click here for more details.
- checksums.yaml +7 -0
- data/README.md +181 -0
- data/bin/open +7 -0
- data/bin/open_in_browser +7 -0
- data/bin/open_these_files +7 -0
- data/bin/open_with_delay +7 -0
- data/doc/README.gen +154 -0
- data/lib/open/base/base.rb +268 -0
- data/lib/open/constants/constants.rb +105 -0
- data/lib/open/in_browser/in_browser.rb +390 -0
- data/lib/open/in_editor/in_editor.rb +327 -0
- data/lib/open/last/last.rb +143 -0
- data/lib/open/last_url/last_url.rb +146 -0
- data/lib/open/nano_open/nano_open.rb +64 -0
- data/lib/open/open.rb +905 -0
- data/lib/open/project/project.rb +45 -0
- data/lib/open/requires/require_the_project.rb +15 -0
- data/lib/open/these_files/these_files.rb +116 -0
- data/lib/open/toplevel_code/toplevel_code.rb +104 -0
- data/lib/open/version/version.rb +19 -0
- data/lib/open/with_delay/with_delay.rb +261 -0
- data/lib/open/yaml/use_this_browser.yml +1 -0
- data/lib/open/yaml/use_this_editor.yml +1 -0
- data/lib/open.rb +5 -0
- data/open.gemspec +36 -0
- data/test/testing_open.rb +35 -0
- metadata +78 -0
metadata
ADDED
@@ -0,0 +1,78 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: open
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.3
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Robert A. Heiler
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2021-11-14 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: |2+
|
14
|
+
|
15
|
+
This project can be used to open an URL in a browser, usually
|
16
|
+
via a browser such as firefox or palemoon. It can also be used
|
17
|
+
to open a local file in an editor. The latter has been a reason
|
18
|
+
why the API was created in the first place, via Open.in_editor()
|
19
|
+
or Open.in_browser().
|
20
|
+
|
21
|
+
email: shevy@inbox.lt
|
22
|
+
executables: []
|
23
|
+
extensions: []
|
24
|
+
extra_rdoc_files: []
|
25
|
+
files:
|
26
|
+
- README.md
|
27
|
+
- bin/open
|
28
|
+
- bin/open_in_browser
|
29
|
+
- bin/open_these_files
|
30
|
+
- bin/open_with_delay
|
31
|
+
- doc/README.gen
|
32
|
+
- lib/open.rb
|
33
|
+
- lib/open/base/base.rb
|
34
|
+
- lib/open/constants/constants.rb
|
35
|
+
- lib/open/in_browser/in_browser.rb
|
36
|
+
- lib/open/in_editor/in_editor.rb
|
37
|
+
- lib/open/last/last.rb
|
38
|
+
- lib/open/last_url/last_url.rb
|
39
|
+
- lib/open/nano_open/nano_open.rb
|
40
|
+
- lib/open/open.rb
|
41
|
+
- lib/open/project/project.rb
|
42
|
+
- lib/open/requires/require_the_project.rb
|
43
|
+
- lib/open/these_files/these_files.rb
|
44
|
+
- lib/open/toplevel_code/toplevel_code.rb
|
45
|
+
- lib/open/version/version.rb
|
46
|
+
- lib/open/with_delay/with_delay.rb
|
47
|
+
- lib/open/yaml/use_this_browser.yml
|
48
|
+
- lib/open/yaml/use_this_editor.yml
|
49
|
+
- open.gemspec
|
50
|
+
- test/testing_open.rb
|
51
|
+
homepage: https://rubygems.org/gems/open_in_browser
|
52
|
+
licenses:
|
53
|
+
- MIT
|
54
|
+
metadata: {}
|
55
|
+
post_install_message:
|
56
|
+
rdoc_options: []
|
57
|
+
require_paths:
|
58
|
+
- lib
|
59
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
60
|
+
requirements:
|
61
|
+
- - ">="
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
version: 2.5.8
|
64
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 3.2.29
|
69
|
+
requirements: []
|
70
|
+
rubygems_version: 3.2.29
|
71
|
+
signing_key:
|
72
|
+
specification_version: 4
|
73
|
+
summary: This project can be used to open an URL in a browser, usually via a browser
|
74
|
+
such as firefox or palemoon. It can also be used to open a local file in an editor.
|
75
|
+
The latter has been a reason why the API was created in the first place, via Open.in_editor()
|
76
|
+
or Open.in_browser().
|
77
|
+
test_files: []
|
78
|
+
...
|