ruby_everywhere 0.1.15 → 0.2.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 +4 -4
- data/bridge/README.md +57 -2
- data/bridge/everywhere/bridge.js +803 -9
- data/bridge/package.json +1 -1
- data/lib/everywhere/builders/ios.rb +364 -0
- data/lib/everywhere/cli.rb +2 -0
- data/lib/everywhere/commands/build.rb +17 -1
- data/lib/everywhere/commands/clean.rb +19 -10
- data/lib/everywhere/commands/dev.rb +182 -19
- data/lib/everywhere/commands/doctor.rb +45 -3
- data/lib/everywhere/commands/icon.rb +14 -0
- data/lib/everywhere/commands/install.rb +37 -6
- data/lib/everywhere/commands/logs.rb +56 -0
- data/lib/everywhere/commands/platform/build.rb +3 -3
- data/lib/everywhere/commands/platform/runner.rb +1 -1
- data/lib/everywhere/commands/release.rb +1 -1
- data/lib/everywhere/commands/shell_dir.rb +11 -4
- data/lib/everywhere/config.rb +366 -1
- data/lib/everywhere/engine.rb +33 -1
- data/lib/everywhere/icon.rb +50 -0
- data/lib/everywhere/log_filter.rb +28 -2
- data/lib/everywhere/mobile_config_endpoint.rb +75 -0
- data/lib/everywhere/mobile_configs_controller.rb +46 -0
- data/lib/everywhere/native_helper.rb +156 -0
- data/lib/everywhere/paths.rb +41 -0
- data/lib/everywhere/raster.rb +17 -0
- data/lib/everywhere/shellout.rb +3 -1
- data/lib/everywhere/simulator.rb +74 -0
- data/lib/everywhere/ui.rb +18 -0
- data/lib/everywhere/version.rb +1 -1
- data/support/mobile/ios/App/App.xcconfig +6 -0
- data/support/mobile/ios/App/AppDelegate.swift +163 -0
- data/support/mobile/ios/App/Assets.xcassets/AccentColor.colorset/Contents.json +20 -0
- data/support/mobile/ios/App/Assets.xcassets/AppIcon.appiconset/AppIcon.png +0 -0
- data/support/mobile/ios/App/Assets.xcassets/AppIcon.appiconset/Contents.json +14 -0
- data/support/mobile/ios/App/Assets.xcassets/Contents.json +6 -0
- data/support/mobile/ios/App/Assets.xcassets/LaunchBackground.colorset/Contents.json +38 -0
- data/support/mobile/ios/App/Base.lproj/LaunchScreen.storyboard +32 -0
- data/support/mobile/ios/App/Bridge/BiometricsComponent.swift +276 -0
- data/support/mobile/ios/App/Bridge/HapticsComponent.swift +47 -0
- data/support/mobile/ios/App/Bridge/NotificationComponent.swift +56 -0
- data/support/mobile/ios/App/Bridge/PermissionsComponent.swift +142 -0
- data/support/mobile/ios/App/Bridge/StorageComponent.swift +63 -0
- data/support/mobile/ios/App/ErrorViewController.swift +64 -0
- data/support/mobile/ios/App/EverywhereConfig.swift +268 -0
- data/support/mobile/ios/App/EverywhereHost.swift +34 -0
- data/support/mobile/ios/App/Extensions/EverywhereExtensions.swift +32 -0
- data/support/mobile/ios/App/Info.plist +28 -0
- data/support/mobile/ios/App/Resources/everywhere.json +8 -0
- data/support/mobile/ios/App/Resources/path-configuration.json +19 -0
- data/support/mobile/ios/App/SceneDelegate.swift +443 -0
- data/support/mobile/ios/App.xcodeproj/project.pbxproj +454 -0
- data/support/mobile/ios/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- data/support/mobile/ios/App.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +14 -0
- data/support/mobile/ios/App.xcodeproj/xcshareddata/xcschemes/App.xcscheme +77 -0
- data/support/mobile/ios/NativeExtensions/Package.swift +26 -0
- data/support/mobile/ios/NativeExtensions/Sources/NativeExtensions/Exports.swift +5 -0
- data/support/mobile/ios/README.md +66 -0
- metadata +35 -1
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ruby_everywhere
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Andrea Fomera
|
|
@@ -86,6 +86,7 @@ files:
|
|
|
86
86
|
- lib/everywhere.rb
|
|
87
87
|
- lib/everywhere/blake2b.rb
|
|
88
88
|
- lib/everywhere/boot.rb
|
|
89
|
+
- lib/everywhere/builders/ios.rb
|
|
89
90
|
- lib/everywhere/cli.rb
|
|
90
91
|
- lib/everywhere/commands/build.rb
|
|
91
92
|
- lib/everywhere/commands/clean.rb
|
|
@@ -93,6 +94,7 @@ files:
|
|
|
93
94
|
- lib/everywhere/commands/doctor.rb
|
|
94
95
|
- lib/everywhere/commands/icon.rb
|
|
95
96
|
- lib/everywhere/commands/install.rb
|
|
97
|
+
- lib/everywhere/commands/logs.rb
|
|
96
98
|
- lib/everywhere/commands/platform/auth_status.rb
|
|
97
99
|
- lib/everywhere/commands/platform/build.rb
|
|
98
100
|
- lib/everywhere/commands/platform/login.rb
|
|
@@ -110,6 +112,9 @@ files:
|
|
|
110
112
|
- lib/everywhere/ignore.rb
|
|
111
113
|
- lib/everywhere/log_filter.rb
|
|
112
114
|
- lib/everywhere/minisign.rb
|
|
115
|
+
- lib/everywhere/mobile_config_endpoint.rb
|
|
116
|
+
- lib/everywhere/mobile_configs_controller.rb
|
|
117
|
+
- lib/everywhere/native_helper.rb
|
|
113
118
|
- lib/everywhere/paths.rb
|
|
114
119
|
- lib/everywhere/platform/client.rb
|
|
115
120
|
- lib/everywhere/platform/credentials.rb
|
|
@@ -119,6 +124,7 @@ files:
|
|
|
119
124
|
- lib/everywhere/receipt.rb
|
|
120
125
|
- lib/everywhere/s3.rb
|
|
121
126
|
- lib/everywhere/shellout.rb
|
|
127
|
+
- lib/everywhere/simulator.rb
|
|
122
128
|
- lib/everywhere/ui.rb
|
|
123
129
|
- lib/everywhere/update_manifest.rb
|
|
124
130
|
- lib/everywhere/version.rb
|
|
@@ -126,6 +132,34 @@ files:
|
|
|
126
132
|
- support/github/build.yml
|
|
127
133
|
- support/macos/entitlements.plist
|
|
128
134
|
- support/macos/notarize.sh
|
|
135
|
+
- support/mobile/ios/App.xcodeproj/project.pbxproj
|
|
136
|
+
- support/mobile/ios/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata
|
|
137
|
+
- support/mobile/ios/App.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved
|
|
138
|
+
- support/mobile/ios/App.xcodeproj/xcshareddata/xcschemes/App.xcscheme
|
|
139
|
+
- support/mobile/ios/App/App.xcconfig
|
|
140
|
+
- support/mobile/ios/App/AppDelegate.swift
|
|
141
|
+
- support/mobile/ios/App/Assets.xcassets/AccentColor.colorset/Contents.json
|
|
142
|
+
- support/mobile/ios/App/Assets.xcassets/AppIcon.appiconset/AppIcon.png
|
|
143
|
+
- support/mobile/ios/App/Assets.xcassets/AppIcon.appiconset/Contents.json
|
|
144
|
+
- support/mobile/ios/App/Assets.xcassets/Contents.json
|
|
145
|
+
- support/mobile/ios/App/Assets.xcassets/LaunchBackground.colorset/Contents.json
|
|
146
|
+
- support/mobile/ios/App/Base.lproj/LaunchScreen.storyboard
|
|
147
|
+
- support/mobile/ios/App/Bridge/BiometricsComponent.swift
|
|
148
|
+
- support/mobile/ios/App/Bridge/HapticsComponent.swift
|
|
149
|
+
- support/mobile/ios/App/Bridge/NotificationComponent.swift
|
|
150
|
+
- support/mobile/ios/App/Bridge/PermissionsComponent.swift
|
|
151
|
+
- support/mobile/ios/App/Bridge/StorageComponent.swift
|
|
152
|
+
- support/mobile/ios/App/ErrorViewController.swift
|
|
153
|
+
- support/mobile/ios/App/EverywhereConfig.swift
|
|
154
|
+
- support/mobile/ios/App/EverywhereHost.swift
|
|
155
|
+
- support/mobile/ios/App/Extensions/EverywhereExtensions.swift
|
|
156
|
+
- support/mobile/ios/App/Info.plist
|
|
157
|
+
- support/mobile/ios/App/Resources/everywhere.json
|
|
158
|
+
- support/mobile/ios/App/Resources/path-configuration.json
|
|
159
|
+
- support/mobile/ios/App/SceneDelegate.swift
|
|
160
|
+
- support/mobile/ios/NativeExtensions/Package.swift
|
|
161
|
+
- support/mobile/ios/NativeExtensions/Sources/NativeExtensions/Exports.swift
|
|
162
|
+
- support/mobile/ios/README.md
|
|
129
163
|
- support/shell/splash/index.html
|
|
130
164
|
- support/shell/src-tauri/Cargo.lock
|
|
131
165
|
- support/shell/src-tauri/Cargo.toml
|