fileutils 1.5.0 → 1.7.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (6) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/Rakefile +1 -3
  4. data/fileutils.gemspec +1 -1
  5. data/lib/fileutils.rb +1332 -399
  6. metadata +4 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 67fa33577498dff5705331ce6453a3c11ff34d209343310f647d4cb404158617
4
- data.tar.gz: 4608e153f0c69749fbf7e4d456388c44fdba1a3a99f5b328c71c283ccd7ca5a3
3
+ metadata.gz: 2d0b2f65c334a82e03ac42af7cf6cd06b483623b480437857141a9df9c015009
4
+ data.tar.gz: 606518f69d4c6f97f7d7825e324d515862a81bd43217c405a28c569513cc68b6
5
5
  SHA512:
6
- metadata.gz: db0b5ce907f782c5ba306ca0a8811c825ec1f97a47731ccc08b2ddc7e13160d7d40986afd1b744cef7b941b2bef2f1c1c4017eb8fc616e8695b506d5ce8cc8ae
7
- data.tar.gz: ccbb52c0a277e03e29dfff22e5bb26b3dc30e7ede6db803f130047bb039cb12161d7f3ecafac5f0956959fde6276b16c68085f30be7c8edae019e7d313301b53
6
+ metadata.gz: f7c816abe3abd75038c84707436dd76b5b084f6db609996d2d080d5f647ebfa8e336b1571cae1e8e5988551da64c3901d0c2e8799873faccaef4a5902454d382
7
+ data.tar.gz: 1035e6b4ed595b421d8771c783676ddee374db565da0e49922f782de9699dc66033d8a16617c1180186019263ff59fe4ad59cb22c9fc6cfd46117348c5236088
data/README.md CHANGED
@@ -31,7 +31,7 @@ FileUtils.pwd
31
31
  # => "/usr/bin"
32
32
  ```
33
33
 
34
- You can find a full method list in the [documentation](https://ruby-doc.org/stdlib/libdoc/fileutils/rdoc/FileUtils.html).
34
+ You can find a full method list in the [documentation](https://docs.ruby-lang.org/en/master/FileUtils.html).
35
35
 
36
36
  ## Contributing
37
37
 
data/Rakefile CHANGED
@@ -1,8 +1,6 @@
1
1
  require "bundler/gem_tasks"
2
2
  require "rake/testtask"
3
3
 
4
- JRuby.objectspace = true if RUBY_PLATFORM == 'java'
5
-
6
4
  Rake::TestTask.new(:test) do |t|
7
5
  t.libs << "test/lib"
8
6
  t.ruby_opts << "-rhelper"
@@ -11,7 +9,7 @@ end
11
9
 
12
10
  task :sync_tool do
13
11
  require 'fileutils'
14
- FileUtils.cp "../ruby/tool/lib/test/unit/core_assertions.rb", "./test/lib"
12
+ FileUtils.cp "../ruby/tool/lib/core_assertions.rb", "./test/lib"
15
13
  FileUtils.cp "../ruby/tool/lib/envutil.rb", "./test/lib"
16
14
  FileUtils.cp "../ruby/tool/lib/find_executable.rb", "./test/lib"
17
15
  end
data/fileutils.gemspec CHANGED
@@ -18,7 +18,7 @@ Gem::Specification.new do |s|
18
18
 
19
19
  s.require_path = %w{lib}
20
20
  s.files = ["LICENSE.txt", "README.md", "Rakefile", "fileutils.gemspec", "lib/fileutils.rb"]
21
- s.required_ruby_version = ">= 2.3.0"
21
+ s.required_ruby_version = ">= 2.5.0"
22
22
 
23
23
  s.authors = ["Minero Aoki"]
24
24
  s.email = [nil]