ruby_everywhere 0.1.15 → 0.3.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.
Files changed (61) hide show
  1. checksums.yaml +4 -4
  2. data/bridge/README.md +105 -2
  3. data/bridge/everywhere/bridge.js +1131 -9
  4. data/bridge/everywhere/native.css +203 -0
  5. data/bridge/package.json +6 -3
  6. data/lib/everywhere/builders/ios.rb +396 -0
  7. data/lib/everywhere/cli.rb +2 -0
  8. data/lib/everywhere/commands/build.rb +17 -1
  9. data/lib/everywhere/commands/clean.rb +19 -10
  10. data/lib/everywhere/commands/dev.rb +182 -19
  11. data/lib/everywhere/commands/doctor.rb +45 -3
  12. data/lib/everywhere/commands/icon.rb +14 -0
  13. data/lib/everywhere/commands/install.rb +37 -6
  14. data/lib/everywhere/commands/logs.rb +56 -0
  15. data/lib/everywhere/commands/platform/build.rb +3 -3
  16. data/lib/everywhere/commands/platform/runner.rb +1 -1
  17. data/lib/everywhere/commands/release.rb +1 -1
  18. data/lib/everywhere/commands/shell_dir.rb +11 -4
  19. data/lib/everywhere/config.rb +469 -1
  20. data/lib/everywhere/engine.rb +42 -1
  21. data/lib/everywhere/icon.rb +50 -0
  22. data/lib/everywhere/log_filter.rb +28 -2
  23. data/lib/everywhere/mobile_config_endpoint.rb +88 -0
  24. data/lib/everywhere/mobile_configs_controller.rb +64 -0
  25. data/lib/everywhere/native_helper.rb +352 -0
  26. data/lib/everywhere/paths.rb +41 -0
  27. data/lib/everywhere/raster.rb +17 -0
  28. data/lib/everywhere/shellout.rb +3 -1
  29. data/lib/everywhere/simulator.rb +74 -0
  30. data/lib/everywhere/ui.rb +18 -0
  31. data/lib/everywhere/version.rb +1 -1
  32. data/support/mobile/ios/App/App.xcconfig +6 -0
  33. data/support/mobile/ios/App/AppDelegate.swift +164 -0
  34. data/support/mobile/ios/App/Assets.xcassets/AccentColor.colorset/Contents.json +20 -0
  35. data/support/mobile/ios/App/Assets.xcassets/AppIcon.appiconset/AppIcon.png +0 -0
  36. data/support/mobile/ios/App/Assets.xcassets/AppIcon.appiconset/Contents.json +14 -0
  37. data/support/mobile/ios/App/Assets.xcassets/Contents.json +6 -0
  38. data/support/mobile/ios/App/Assets.xcassets/LaunchBackground.colorset/Contents.json +38 -0
  39. data/support/mobile/ios/App/Base.lproj/LaunchScreen.storyboard +32 -0
  40. data/support/mobile/ios/App/Bridge/BiometricsComponent.swift +276 -0
  41. data/support/mobile/ios/App/Bridge/HapticsComponent.swift +47 -0
  42. data/support/mobile/ios/App/Bridge/MenuComponent.swift +192 -0
  43. data/support/mobile/ios/App/Bridge/NotificationComponent.swift +56 -0
  44. data/support/mobile/ios/App/Bridge/PermissionsComponent.swift +142 -0
  45. data/support/mobile/ios/App/Bridge/StorageComponent.swift +63 -0
  46. data/support/mobile/ios/App/ErrorViewController.swift +64 -0
  47. data/support/mobile/ios/App/EverywhereConfig.swift +289 -0
  48. data/support/mobile/ios/App/EverywhereHost.swift +34 -0
  49. data/support/mobile/ios/App/Extensions/EverywhereExtensions.swift +32 -0
  50. data/support/mobile/ios/App/Info.plist +28 -0
  51. data/support/mobile/ios/App/Resources/everywhere.json +8 -0
  52. data/support/mobile/ios/App/Resources/path-configuration.json +19 -0
  53. data/support/mobile/ios/App/SceneDelegate.swift +484 -0
  54. data/support/mobile/ios/App.xcodeproj/project.pbxproj +458 -0
  55. data/support/mobile/ios/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  56. data/support/mobile/ios/App.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +14 -0
  57. data/support/mobile/ios/App.xcodeproj/xcshareddata/xcschemes/App.xcscheme +77 -0
  58. data/support/mobile/ios/NativeExtensions/Package.swift +26 -0
  59. data/support/mobile/ios/NativeExtensions/Sources/NativeExtensions/Exports.swift +5 -0
  60. data/support/mobile/ios/README.md +73 -0
  61. metadata +37 -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.1.15
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrea Fomera
@@ -79,6 +79,7 @@ files:
79
79
  - bridge/LICENSE
80
80
  - bridge/README.md
81
81
  - bridge/everywhere/bridge.js
82
+ - bridge/everywhere/native.css
82
83
  - bridge/package.json
83
84
  - config/importmap.rb
84
85
  - exe/every
@@ -86,6 +87,7 @@ files:
86
87
  - lib/everywhere.rb
87
88
  - lib/everywhere/blake2b.rb
88
89
  - lib/everywhere/boot.rb
90
+ - lib/everywhere/builders/ios.rb
89
91
  - lib/everywhere/cli.rb
90
92
  - lib/everywhere/commands/build.rb
91
93
  - lib/everywhere/commands/clean.rb
@@ -93,6 +95,7 @@ files:
93
95
  - lib/everywhere/commands/doctor.rb
94
96
  - lib/everywhere/commands/icon.rb
95
97
  - lib/everywhere/commands/install.rb
98
+ - lib/everywhere/commands/logs.rb
96
99
  - lib/everywhere/commands/platform/auth_status.rb
97
100
  - lib/everywhere/commands/platform/build.rb
98
101
  - lib/everywhere/commands/platform/login.rb
@@ -110,6 +113,9 @@ files:
110
113
  - lib/everywhere/ignore.rb
111
114
  - lib/everywhere/log_filter.rb
112
115
  - lib/everywhere/minisign.rb
116
+ - lib/everywhere/mobile_config_endpoint.rb
117
+ - lib/everywhere/mobile_configs_controller.rb
118
+ - lib/everywhere/native_helper.rb
113
119
  - lib/everywhere/paths.rb
114
120
  - lib/everywhere/platform/client.rb
115
121
  - lib/everywhere/platform/credentials.rb
@@ -119,6 +125,7 @@ files:
119
125
  - lib/everywhere/receipt.rb
120
126
  - lib/everywhere/s3.rb
121
127
  - lib/everywhere/shellout.rb
128
+ - lib/everywhere/simulator.rb
122
129
  - lib/everywhere/ui.rb
123
130
  - lib/everywhere/update_manifest.rb
124
131
  - lib/everywhere/version.rb
@@ -126,6 +133,35 @@ files:
126
133
  - support/github/build.yml
127
134
  - support/macos/entitlements.plist
128
135
  - support/macos/notarize.sh
136
+ - support/mobile/ios/App.xcodeproj/project.pbxproj
137
+ - support/mobile/ios/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata
138
+ - support/mobile/ios/App.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved
139
+ - support/mobile/ios/App.xcodeproj/xcshareddata/xcschemes/App.xcscheme
140
+ - support/mobile/ios/App/App.xcconfig
141
+ - support/mobile/ios/App/AppDelegate.swift
142
+ - support/mobile/ios/App/Assets.xcassets/AccentColor.colorset/Contents.json
143
+ - support/mobile/ios/App/Assets.xcassets/AppIcon.appiconset/AppIcon.png
144
+ - support/mobile/ios/App/Assets.xcassets/AppIcon.appiconset/Contents.json
145
+ - support/mobile/ios/App/Assets.xcassets/Contents.json
146
+ - support/mobile/ios/App/Assets.xcassets/LaunchBackground.colorset/Contents.json
147
+ - support/mobile/ios/App/Base.lproj/LaunchScreen.storyboard
148
+ - support/mobile/ios/App/Bridge/BiometricsComponent.swift
149
+ - support/mobile/ios/App/Bridge/HapticsComponent.swift
150
+ - support/mobile/ios/App/Bridge/MenuComponent.swift
151
+ - support/mobile/ios/App/Bridge/NotificationComponent.swift
152
+ - support/mobile/ios/App/Bridge/PermissionsComponent.swift
153
+ - support/mobile/ios/App/Bridge/StorageComponent.swift
154
+ - support/mobile/ios/App/ErrorViewController.swift
155
+ - support/mobile/ios/App/EverywhereConfig.swift
156
+ - support/mobile/ios/App/EverywhereHost.swift
157
+ - support/mobile/ios/App/Extensions/EverywhereExtensions.swift
158
+ - support/mobile/ios/App/Info.plist
159
+ - support/mobile/ios/App/Resources/everywhere.json
160
+ - support/mobile/ios/App/Resources/path-configuration.json
161
+ - support/mobile/ios/App/SceneDelegate.swift
162
+ - support/mobile/ios/NativeExtensions/Package.swift
163
+ - support/mobile/ios/NativeExtensions/Sources/NativeExtensions/Exports.swift
164
+ - support/mobile/ios/README.md
129
165
  - support/shell/splash/index.html
130
166
  - support/shell/src-tauri/Cargo.lock
131
167
  - support/shell/src-tauri/Cargo.toml