laser-cutter 1.0.0 → 1.0.1
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/laser-cutter/notching/path_generator.rb +2 -2
- data/lib/laser-cutter/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 87f62fd489c3cd04c359568cd276047f1730d496
|
|
4
|
+
data.tar.gz: eb5f44696bb79a1999a2ae5808666e0bdab759ee
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 359698dca7aee6c61e5c3027e9b751441bc22b7c6cb07cf7331b3762f600269bcf58966e0c53192aa7ae61bee149230f082145b10a3a1fa6d795a9cabbd030fb
|
|
7
|
+
data.tar.gz: 352ef6525a2ed57e9179245f2b69e9a5f6fb3cba26c8f1099f2a3d0919c72e59415438ea8d42ef7bc07941969a350530df1b2b9adcc2af5c351a2cf5c265f770
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
require 'forwardable'
|
|
2
2
|
module Laser
|
|
3
3
|
module Cutter
|
|
4
4
|
module Notching
|
|
@@ -34,7 +34,7 @@ module Laser
|
|
|
34
34
|
|
|
35
35
|
class PathGenerator
|
|
36
36
|
|
|
37
|
-
extend Forwardable
|
|
37
|
+
extend ::Forwardable
|
|
38
38
|
%i(center_out thickness corners kerf kerf? notch_width first_notch_out? adjust_corners corners).each do |method_name|
|
|
39
39
|
def_delegator :@edge, method_name, method_name
|
|
40
40
|
end
|
data/lib/laser-cutter/version.rb
CHANGED