stagewright 0.0.1.pre.alpha

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 1c89582e5a4a5159dc5439e608530e3424af0fc9641ff748b373f9f87734874b
4
+ data.tar.gz: 30ebf124aabc316ca20859e794e4ec056151734bce6b9d421d6947db2fa6c593
5
+ SHA512:
6
+ metadata.gz: de7277a9fa8c5109e9d20c6c2c7f35984a2b203a57f132e6ec69bdb1e4f9c9733069c94c56be042a467a8a7e9419a82108dd647016fe67d9cc95295ca747181d
7
+ data.tar.gz: 2a2326311ea0bcc635d866c30c85d8b8dc345bbcad6c1a12d36796f32dd620b95c935543d7e7b6b6c4c0defea3ea052f3810a950491a0802dd98ebddebb73b4f
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 mcorino
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,2 @@
1
+ # stagewright
2
+ Ruby application installer creator
data/bin/stage ADDED
@@ -0,0 +1,9 @@
1
+ #!/usr/bin/env ruby
2
+ #---------------------------------
3
+ # This file is generated
4
+ #---------------------------------
5
+ module Stagewright
6
+ ROOT = File.expand_path(File.join(__dir__, '..'))
7
+ end
8
+ require 'stagewright/cli/base'
9
+ Stager.run
@@ -0,0 +1,6 @@
1
+ # frozen_string_literal: true
2
+ # Copyright (c) 2025 M.J.N. Corino, The Netherlands
3
+ #
4
+ # This software is released under the MIT license.
5
+
6
+ require_relative 'version'
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+ # Copyright (c) 2025 M.J.N. Corino, The Netherlands
3
+ #
4
+ # This software is released under the MIT license.
5
+
6
+ module Stagewright
7
+ VERSION = '0.0.1-alpha'
8
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+ # Copyright (c) 2025 M.J.N. Corino, The Netherlands
3
+ #
4
+ # This software is released under the MIT license.
5
+ #
6
+ # stagewright loader
7
+
8
+ require 'stagewright/require.rb'
metadata ADDED
@@ -0,0 +1,87 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: stagewright
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1.pre.alpha
5
+ platform: ruby
6
+ authors:
7
+ - Martin Corino
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 2025-01-05 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: rake
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - ">="
17
+ - !ruby/object:Gem::Version
18
+ version: '0'
19
+ type: :runtime
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - ">="
24
+ - !ruby/object:Gem::Version
25
+ version: '0'
26
+ - !ruby/object:Gem::Dependency
27
+ name: plat4m
28
+ requirement: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - "~>"
31
+ - !ruby/object:Gem::Version
32
+ version: '1.1'
33
+ type: :runtime
34
+ prerelease: false
35
+ version_requirements: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '1.1'
40
+ description: The stagewright gem provides a tool to create Ruby application installers.
41
+ email: mcorino@m2c-software.nl
42
+ executables:
43
+ - stage
44
+ extensions: []
45
+ extra_rdoc_files: []
46
+ files:
47
+ - LICENSE
48
+ - README.md
49
+ - bin/stage
50
+ - lib/stagewright.rb
51
+ - lib/stagewright/require.rb
52
+ - lib/stagewright/version.rb
53
+ homepage: https://github.com/mcorino/stagewright
54
+ licenses:
55
+ - MIT
56
+ metadata:
57
+ bug_tracker_uri: https://github.com/mcorino/stagewright/issues
58
+ homepage_uri: https://github.com/mcorino/stagewright/wiki
59
+ source_code_uri: https://github.com/mcorino/stagewright
60
+ documentation_uri: https://mcorino.github.io/stagewright
61
+ github_repo: https://github.com/mcorino/stagewright
62
+ post_install_message: |2+
63
+
64
+ The stagewright Gem has been successfully installed including the 'stage' utility.
65
+
66
+ Have fun using stagewright.
67
+
68
+ Run 'stage -h' to see information on the available commands.
69
+
70
+ rdoc_options: []
71
+ require_paths:
72
+ - lib
73
+ required_ruby_version: !ruby/object:Gem::Requirement
74
+ requirements:
75
+ - - ">="
76
+ - !ruby/object:Gem::Version
77
+ version: '3.0'
78
+ required_rubygems_version: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ requirements: []
84
+ rubygems_version: 3.6.2
85
+ specification_version: 4
86
+ summary: Staging tool to create Ruby application installer
87
+ test_files: []