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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5ecda6233f153bb9eb90901f78b51c4922a280d55e8da5579813c50527e45804
|
|
4
|
+
data.tar.gz: 46fd8a0a0138f82ebdf9c773a0669bd35671ad48098d1e76394f61e77277a9fd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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?(
|
|
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?(
|
|
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 ""
|
data/lib/ruby_native/cli.rb
CHANGED
|
@@ -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
|
|
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
|
data/lib/ruby_native/version.rb
CHANGED
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.
|
|
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:
|
|
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:
|
|
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: []
|