subclass_lldb 0.0.1 → 0.0.2
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/lib/rubygems_plugin.rb +3 -3
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c6c7a629c51a2fd748ae046602e8fe69c9a6eb51c3c280b9571e64b9f4ff4608
|
4
|
+
data.tar.gz: 944f0028d854bcf7931a0e29e8629fa54a1f29f0da57646c15c62c15deff538b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3aea680606ab18946dbc7dd05d5f046b7775d0df301c4662d5970c4a060f272eab637cebd3ce0dfe893e12a3f085300799f9717d8a885e8812a797a201b05de5
|
7
|
+
data.tar.gz: d25434a1f56334c64103737c8eb00f111752f77f8df77ff493db79c4b3437acb87c8711c730890684766683185c3147b9ad2f7c04bf5e6d3d4258d63e3c09e00
|
data/lib/rubygems_plugin.rb
CHANGED
@@ -3,8 +3,8 @@ require 'pathname'
|
|
3
3
|
|
4
4
|
Lldb_init_path = File.expand_path('~')+'/.lldbinit'
|
5
5
|
Lldb_init_path_temp = File.expand_path('~')+'/.lldbinit_temp'
|
6
|
-
Lldb_source_path = File.expand_path('~')+'/.
|
7
|
-
Lldb_file_path = File.expand_path('~')+'/.
|
6
|
+
Lldb_source_path = File.expand_path('~')+'/.subclass_lldb'
|
7
|
+
Lldb_file_path = File.expand_path('~')+'/.subclass_lldb/subclass_lldb.py'
|
8
8
|
Commond_str = 'command script import '+Lldb_file_path
|
9
9
|
|
10
10
|
Gem.post_install do
|
@@ -41,7 +41,7 @@ Gem.post_install do
|
|
41
41
|
File.rename scriptPath+'/setup', Lldb_file_path
|
42
42
|
File.chmod(0775,Lldb_file_path)
|
43
43
|
|
44
|
-
puts "Please use the
|
44
|
+
puts "Please use the subclass command in your Xcode LLDB."
|
45
45
|
end
|
46
46
|
|
47
47
|
def remove_dir(path)
|