raykit 0.0.515 → 0.0.517

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 (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/raykit/wix.rb +3 -5
  3. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c92ad48b8fb6eda2c2e01400444ad5fa88f0ce8a6b1496e8aa46034cd05943b2
4
- data.tar.gz: 9f1889ec8b541812be94028a1372891262b722aa364b8c31edb12e29e87e8744
3
+ metadata.gz: 3ef66adb0adfbce5a6b49b18fffc821da8d013073ce747c0397229e0d93271a4
4
+ data.tar.gz: 29ee3573cb2d23909dcbe69300d3ed281d936ff08b3ce51a178e16ea4f48884a
5
5
  SHA512:
6
- metadata.gz: eea3a96f188ca5e34261402375dd40cebbbbe2c50688a4350c326bbdee194985c093a93fe1a9651b513e01b8dad054ccf90edf56e032c23c226ed0cdf1f3c8fc
7
- data.tar.gz: 04e3c2a3fc80fce7e37de288fca03febcd2ea4113771ce0fbab439115860d0ae39bf20b33ba662f744a369ee0860f0673cd9fa97ef7125aa4d5ec86c062cd598
6
+ metadata.gz: 8ee5b659ba9e35aad066f938bb1278691cad6e72a2fd1287563b46b18962181dc0d73007372db4ba3a46f200c978372ed8dea093a7392ca4a07da77fe5806d0b
7
+ data.tar.gz: 2e78d53b596bd6ca20f34fa6b6ecfedca462e94e2a499a32724f310979b6d8ebfa092ccfcdd26dad478a8c2f30257b27aa28811af6d3ddaf4d4a8a24198a4a15
data/lib/raykit/wix.rb CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  module Raykit
4
4
  class Wix
5
- def self.get_directory_elements(directory)
5
+ def self.harvest_directory_elements(directory)
6
6
  get_nested_directory_element("", directory)
7
7
  end
8
8
  def self.get_nested_directory_element(id_prefix, directory)
@@ -30,15 +30,13 @@ module Raykit
30
30
  # <Component Id="IndexHtmlComponent" Directory="WWWDIR" Guid="*">
31
31
  # <File Id="IndexHtmlFile" Source="path\to\index.html" KeyPath="yes"/>
32
32
  # </Component>
33
- def self.get_file_components(directory)
33
+ def self.harvest_file_components(directory)
34
34
  components = Array::new
35
35
  Dir.chdir(directory) do
36
36
  index = 0
37
37
  Dir.glob("**/*").reject { |f| File.directory? f }.each { |f|
38
- puts "file: #{f}"
39
38
  index += 1
40
- component = get_indexed_file_components(f, index)
41
- puts "component: #{component}"
39
+ component = get_indexed_file_component(f, index)
42
40
  components.push(component)
43
41
  }
44
42
  components
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: raykit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.515
4
+ version: 0.0.517
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lou Parslow