ruby_everywhere 0.0.1 → 0.1.1
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 +4 -4
- data/exe/every +6 -0
- data/exe/rbe +6 -0
- data/lib/everywhere/boot.rb +138 -0
- data/lib/everywhere/cli.rb +44 -0
- data/lib/everywhere/commands/build.rb +267 -0
- data/lib/everywhere/commands/dev.rb +61 -0
- data/lib/everywhere/commands/doctor.rb +54 -0
- data/lib/everywhere/commands/install.rb +264 -0
- data/lib/everywhere/commands/platform/auth_status.rb +42 -0
- data/lib/everywhere/commands/platform/build.rb +181 -0
- data/lib/everywhere/commands/platform/login.rb +81 -0
- data/lib/everywhere/commands/platform/logout.rb +34 -0
- data/lib/everywhere/commands/platform/runner.rb +224 -0
- data/lib/everywhere/commands/release.rb +142 -0
- data/lib/everywhere/config.rb +188 -0
- data/lib/everywhere/database.rb +89 -0
- data/lib/everywhere/framework.rb +197 -0
- data/lib/everywhere/ignore.rb +85 -0
- data/lib/everywhere/javascript/bridge.js +174 -0
- data/lib/everywhere/paths.rb +35 -0
- data/lib/everywhere/platform/client.rb +125 -0
- data/lib/everywhere/platform/credentials.rb +71 -0
- data/lib/everywhere/platform/snapshot.rb +48 -0
- data/lib/everywhere/png.rb +110 -0
- data/lib/everywhere/receipt.rb +185 -0
- data/lib/everywhere/shellout.rb +46 -0
- data/lib/everywhere/ui.rb +37 -0
- data/lib/everywhere/version.rb +11 -0
- data/lib/everywhere.rb +50 -0
- data/lib/ruby_everywhere.rb +2 -3
- data/support/github/build.yml +85 -0
- data/support/macos/entitlements.plist +23 -0
- data/support/macos/notarize.sh +123 -0
- data/support/shell/splash/index.html +40 -0
- data/support/shell/src-tauri/Cargo.lock +5446 -0
- data/support/shell/src-tauri/Cargo.toml +19 -0
- data/support/shell/src-tauri/build.rs +3 -0
- data/support/shell/src-tauri/capabilities/default.json +22 -0
- data/support/shell/src-tauri/gen/schemas/acl-manifests.json +1 -0
- data/support/shell/src-tauri/gen/schemas/capabilities.json +1 -0
- data/support/shell/src-tauri/gen/schemas/desktop-schema.json +2634 -0
- data/support/shell/src-tauri/gen/schemas/macOS-schema.json +2634 -0
- data/support/shell/src-tauri/icons/icon.png +0 -0
- data/support/shell/src-tauri/src/main.rs +723 -0
- data/support/shell/src-tauri/tauri.conf.json +20 -0
- metadata +80 -7
- data/README.md +0 -11
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://schema.tauri.app/config/2",
|
|
3
|
+
"productName": "ExampleNative",
|
|
4
|
+
"version": "0.1.0",
|
|
5
|
+
"identifier": "com.rubyeverywhere.example",
|
|
6
|
+
"build": {
|
|
7
|
+
"frontendDist": "../splash"
|
|
8
|
+
},
|
|
9
|
+
"app": {
|
|
10
|
+
"windows": [],
|
|
11
|
+
"security": {
|
|
12
|
+
"csp": null
|
|
13
|
+
},
|
|
14
|
+
"withGlobalTauri": true
|
|
15
|
+
},
|
|
16
|
+
"bundle": {
|
|
17
|
+
"active": false,
|
|
18
|
+
"icon": []
|
|
19
|
+
}
|
|
20
|
+
}
|
metadata
CHANGED
|
@@ -1,24 +1,97 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ruby_everywhere
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Andrea Fomera
|
|
8
|
-
bindir:
|
|
8
|
+
bindir: exe
|
|
9
9
|
cert_chain: []
|
|
10
10
|
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
-
dependencies:
|
|
12
|
-
|
|
13
|
-
|
|
11
|
+
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: dry-cli
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - "~>"
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: '1.2'
|
|
19
|
+
type: :runtime
|
|
20
|
+
prerelease: false
|
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
22
|
+
requirements:
|
|
23
|
+
- - "~>"
|
|
24
|
+
- !ruby/object:Gem::Version
|
|
25
|
+
version: '1.2'
|
|
26
|
+
- !ruby/object:Gem::Dependency
|
|
27
|
+
name: rbe-tebako
|
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
|
29
|
+
requirements:
|
|
30
|
+
- - "~>"
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '0.15'
|
|
33
|
+
type: :runtime
|
|
34
|
+
prerelease: false
|
|
35
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - "~>"
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: '0.15'
|
|
40
|
+
description: Packages a Rails (and one day Hanami) app into a single-file binary with
|
|
41
|
+
Tebako and wraps it in a Tauri desktop shell as a double-clickable app.
|
|
14
42
|
email:
|
|
15
43
|
- andrea.fomera@gmail.com
|
|
16
|
-
executables:
|
|
44
|
+
executables:
|
|
45
|
+
- every
|
|
46
|
+
- rbe
|
|
17
47
|
extensions: []
|
|
18
48
|
extra_rdoc_files: []
|
|
19
49
|
files:
|
|
20
|
-
-
|
|
50
|
+
- exe/every
|
|
51
|
+
- exe/rbe
|
|
52
|
+
- lib/everywhere.rb
|
|
53
|
+
- lib/everywhere/boot.rb
|
|
54
|
+
- lib/everywhere/cli.rb
|
|
55
|
+
- lib/everywhere/commands/build.rb
|
|
56
|
+
- lib/everywhere/commands/dev.rb
|
|
57
|
+
- lib/everywhere/commands/doctor.rb
|
|
58
|
+
- lib/everywhere/commands/install.rb
|
|
59
|
+
- lib/everywhere/commands/platform/auth_status.rb
|
|
60
|
+
- lib/everywhere/commands/platform/build.rb
|
|
61
|
+
- lib/everywhere/commands/platform/login.rb
|
|
62
|
+
- lib/everywhere/commands/platform/logout.rb
|
|
63
|
+
- lib/everywhere/commands/platform/runner.rb
|
|
64
|
+
- lib/everywhere/commands/release.rb
|
|
65
|
+
- lib/everywhere/config.rb
|
|
66
|
+
- lib/everywhere/database.rb
|
|
67
|
+
- lib/everywhere/framework.rb
|
|
68
|
+
- lib/everywhere/ignore.rb
|
|
69
|
+
- lib/everywhere/javascript/bridge.js
|
|
70
|
+
- lib/everywhere/paths.rb
|
|
71
|
+
- lib/everywhere/platform/client.rb
|
|
72
|
+
- lib/everywhere/platform/credentials.rb
|
|
73
|
+
- lib/everywhere/platform/snapshot.rb
|
|
74
|
+
- lib/everywhere/png.rb
|
|
75
|
+
- lib/everywhere/receipt.rb
|
|
76
|
+
- lib/everywhere/shellout.rb
|
|
77
|
+
- lib/everywhere/ui.rb
|
|
78
|
+
- lib/everywhere/version.rb
|
|
21
79
|
- lib/ruby_everywhere.rb
|
|
80
|
+
- support/github/build.yml
|
|
81
|
+
- support/macos/entitlements.plist
|
|
82
|
+
- support/macos/notarize.sh
|
|
83
|
+
- support/shell/splash/index.html
|
|
84
|
+
- support/shell/src-tauri/Cargo.lock
|
|
85
|
+
- support/shell/src-tauri/Cargo.toml
|
|
86
|
+
- support/shell/src-tauri/build.rs
|
|
87
|
+
- support/shell/src-tauri/capabilities/default.json
|
|
88
|
+
- support/shell/src-tauri/gen/schemas/acl-manifests.json
|
|
89
|
+
- support/shell/src-tauri/gen/schemas/capabilities.json
|
|
90
|
+
- support/shell/src-tauri/gen/schemas/desktop-schema.json
|
|
91
|
+
- support/shell/src-tauri/gen/schemas/macOS-schema.json
|
|
92
|
+
- support/shell/src-tauri/icons/icon.png
|
|
93
|
+
- support/shell/src-tauri/src/main.rs
|
|
94
|
+
- support/shell/src-tauri/tauri.conf.json
|
|
22
95
|
homepage: https://rubyeverywhere.com
|
|
23
96
|
licenses:
|
|
24
97
|
- MIT
|
data/README.md
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
# RubyEverywhere
|
|
2
|
-
|
|
3
|
-
Ship desktop apps from the Ruby web apps you already know how to build.
|
|
4
|
-
|
|
5
|
-
> This is a placeholder release reserving the `ruby_everywhere` gem name.
|
|
6
|
-
> Real functionality is on the way — see https://rubyeverywhere.com
|
|
7
|
-
|
|
8
|
-
## Status
|
|
9
|
-
|
|
10
|
-
Under active development. `0.0.1` is a name-reservation release and does not
|
|
11
|
-
yet provide any functionality.
|