fe_core_ext 0.11.0 → 0.11.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e75f967878190d148dcc5d19d3b4643c28c9294c2c1027983a3eeed844a20636
4
- data.tar.gz: 27c1d0c08f0e17167f5654f7335ddc7644b3113946b232ce3432f97812e27453
3
+ metadata.gz: ad6343d63437a657f4dbde3f98b6bdca17d5df33f8e8f90e1ca4db43527e1f60
4
+ data.tar.gz: 7f963b9bd854709fbd3340d9dc64aa1982daa16ef3c2570e60ad84523aaceb86
5
5
  SHA512:
6
- metadata.gz: 4461a9de058140d1457eeb1b75ed2186911fc38b441c130f15c2f6c4638b6bd71eeb44b1290e367e010e581e451c447bb6e3b04ee14a8a3a68e8c1e654a8b01e
7
- data.tar.gz: 915a568bdadf01910e9f7775dcd4431c31f0b196d3d319e71d550d27103fe42753b66f76521fa38b020e5b5909c76803ed40b712b7bf794d073e104936a0edb5
6
+ metadata.gz: 7c38d35d96d71b246b87381c6bbe130aa158b411f22f697d23ad9d9b529d2c42030dad9c12a5de6a7501cfedf3a990904999f18a8e33db8337b19fccd4fd0d1b
7
+ data.tar.gz: f96c3906315cf51ba426a61aa05b3af80ae65e5f93f037e74ebe27c150d29f06af3e0558b5bbe16382ede15f0b45f8d5ac4409fbb054c38dcbbb10e86f735081
@@ -31,6 +31,12 @@ module FeCoreExt::CoreExt::Pathname
31
31
  def require_relative
32
32
  Kernel.require_relative(self)
33
33
  end
34
+ end
35
+
36
+ module FeCoreExt::CoreExt::PathnameClassMethods
37
+ def join(*args)
38
+ new(File.join(*args))
39
+ end
34
40
 
35
41
  def mktmpdir(prefix_suffix=nil, tmpdir=nil)
36
42
  if block_given?
@@ -43,12 +49,6 @@ module FeCoreExt::CoreExt::Pathname
43
49
  end
44
50
  end
45
51
 
46
- module FeCoreExt::CoreExt::PathnameClassMethods
47
- def join(*args)
48
- new(File.join(*args))
49
- end
50
- end
51
-
52
52
  class Pathname
53
53
  extend FeCoreExt::CoreExt::PathnameClassMethods
54
54
  include FeCoreExt::CoreExt::Pathname
@@ -1,3 +1,3 @@
1
1
  module FeCoreExt
2
- VERSION = '0.11.0'
2
+ VERSION = '0.11.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fe_core_ext
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.0
4
+ version: 0.11.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tetsu