bash_help 0.0.7 → 0.0.9

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5ba51a95971f3b6ec99e21420faa25c89035028aee10cc4ce50914a983a326af
4
- data.tar.gz: 253f33b13708c8bb6b963b61d238763799e8597a70e1f8ab6cf46f6a07c050e0
3
+ metadata.gz: 9b1d15ba32ac7ebe927bda65e6ef209020ca09ad09ba25db438d5ed4ac56fc7a
4
+ data.tar.gz: 8a2adf3a4f3d81fb5d2423c2fae5af7c877671bd57285f462e5aa4309efdb5fe
5
5
  SHA512:
6
- metadata.gz: 2292d7a6d5a61723f63bd4ce3e4a36905ef7e7f5d54e36645f5bbccf42b5ed8dc7b050fd221845810701ed918ead3599b6dacda6d0cabcaab3cadd7657300954
7
- data.tar.gz: c4719b8257130483286d0a048eab33e063ffbd2dad6edb5d35d890cd98e6f358b13d61a0e7861fc157f69671ccff5589022c83de8e9a3066bc09bce0570db7cb
6
+ metadata.gz: '02069a9aa59d3bf08ba3f57225dc41b6215c9586f45a9d06da1edc0049e6e73000d1d098a9a5291ca799ed8d6e0ca37f738ee0c169598c0d3f92a10205d077e0'
7
+ data.tar.gz: 52426fec5e5ce3b6004eb7398a1154c663238827fab2f2312db1f34527ab4a9a0de73596f298e65d4253797860af8fb3bf15b8e06d619fe596c4bcfc307f7e88
data/lib/drawing.rb CHANGED
@@ -111,6 +111,3 @@ def test_all_drawing_methods
111
111
  pyramid_text("Test text")
112
112
  puts "\n"
113
113
  end
114
-
115
- # Run the testing function
116
- test_all_drawing_methods
@@ -53,7 +53,13 @@ def require_dir(directory_path)
53
53
  script_files.each do |script_file|
54
54
  # Require or load the script file
55
55
  require script_file
56
- # Or if you want to load instead of requiring:
57
- # load script_file
58
56
  end
59
57
  end
58
+
59
+ =begin
60
+ call this like
61
+ require_dir_relative(__FILE__, 'path/to/directory')
62
+ =end
63
+ def require_dir_relative(script_file_path, directory_path)
64
+ require_dir(File.expand_path(File.dirname(script_file_path), directory_path))
65
+ end
data/lib/hello_module.rb CHANGED
@@ -1,4 +1,3 @@
1
-
2
1
  def say_hello
3
2
  puts "hello"
4
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bash_help
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Zack Fisher