ruby_native 0.0.3 → 0.0.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ec3f67cb02a265d7b8cd8a566e138408c9414f8ee79a16888b419a6a36c5c8f6
4
- data.tar.gz: 72b1f835e77f85b6ab829181a319612abef5dd714a45f4541492373b528257c7
3
+ metadata.gz: 5ecda6233f153bb9eb90901f78b51c4922a280d55e8da5579813c50527e45804
4
+ data.tar.gz: 46fd8a0a0138f82ebdf9c773a0669bd35671ad48098d1e76394f61e77277a9fd
5
5
  SHA512:
6
- metadata.gz: 7d95e30fb893f5d470102bbead726d381b8dd2298ab8f8ea1d3ffc26c6c1e41718b17cd78becef3cd30bc67a8063c72669860e688121d810ffe4b9ef820c3920
7
- data.tar.gz: 38e2796256633182035d99cd52fe3ff943ad500601d515c03af7a196f54a38a8b05cd3c20f9f664c68be1e3509c42da285e2d628d3c42119bbb0f5d941c576f7
6
+ metadata.gz: 3d2753fdf5a2d9d0b1514659a83d6f8d2edfeb8d58a603994cd16c4f05cd32b55fdfb234ba95d17a2ed47fdd62b791642a96db74fe2447cdfb5e0cebc137bfac
7
+ data.tar.gz: 29d5c93c933e1f4f95df49cd0117947c1d26c7dd5e38ba8309b717f546e74c66df50324fb42d35c25281a3f3ec14bb61939d945b4f8ab841007dadc9d04e979b
@@ -21,7 +21,7 @@ module RubyNative
21
21
  end
22
22
 
23
23
  def copy_claude_instructions
24
- return unless File.directory?(destination_root.join(".claude"))
24
+ return unless File.directory?(File.join(destination_root, ".claude"))
25
25
  template "CLAUDE.md", ".claude/ruby_native.md"
26
26
  end
27
27
 
@@ -37,7 +37,7 @@ module RubyNative
37
37
  say " 4. Preview on your device:"
38
38
  say " ruby_native preview"
39
39
  say ""
40
- if File.directory?(destination_root.join(".claude"))
40
+ if File.directory?(File.join(destination_root, ".claude"))
41
41
  say " Tip: .claude/ruby_native.md was added with setup instructions."
42
42
  say " Open Claude Code and ask \"what do I need to do next?\" for guided help."
43
43
  say ""
@@ -1,6 +1,3 @@
1
- app:
2
- name: My App
3
-
4
1
  appearance:
5
2
  tint_color: "#007AFF"
6
3
  background_color: "#FFFFFF"
@@ -8,7 +8,10 @@ module RubyNative
8
8
  when "preview"
9
9
  RubyNative::CLI::Preview.new(argv).run
10
10
  else
11
- puts "Usage: ruby_native preview [--port PORT]"
11
+ puts "Usage: ruby_native <command>"
12
+ puts ""
13
+ puts "Commands:"
14
+ puts " preview Start a tunnel and display a QR code"
12
15
  end
13
16
  end
14
17
  end
@@ -1,3 +1,3 @@
1
1
  module RubyNative
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby_native
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joe Masilotti
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2026-02-13 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: rails
@@ -68,7 +67,6 @@ homepage: https://github.com/Ruby-Native/gem
68
67
  licenses:
69
68
  - MIT
70
69
  metadata: {}
71
- post_install_message:
72
70
  rdoc_options: []
73
71
  require_paths:
74
72
  - lib
@@ -83,8 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
83
81
  - !ruby/object:Gem::Version
84
82
  version: '0'
85
83
  requirements: []
86
- rubygems_version: 3.0.3.1
87
- signing_key:
84
+ rubygems_version: 4.0.3
88
85
  specification_version: 4
89
86
  summary: Turn your existing Rails app into a native iOS and Android app.
90
87
  test_files: []