Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 13 additions & 12 deletions fileutils.gemspec
Original file line number Diff line number Diff line change
@@ -1,30 +1,31 @@
# frozen_string_literal: true

begin
require_relative "lib/fileutils/version"
rescue LoadError
# for Ruby core repository
require_relative "version"
source_version = ["", "lib/"].find do |dir|
begin
break File.open(File.join(__dir__, "#{dir}fileutils.rb")) {|f|
f.gets("\n VERSION = ")
f.gets[/\s*"(.+)"/, 1]
}
rescue Errno::ENOENT
end
end

Gem::Specification.new do |s|
s.name = "fileutils"
s.version = FileUtils::VERSION
s.version = source_version
s.summary = "Several file utility methods for copying, moving, removing, etc."
s.description = "Several file utility methods for copying, moving, removing, etc."

s.require_path = %w{lib}
s.files = ["LICENSE.txt", "README.md", "Rakefile", "fileutils.gemspec", "lib/fileutils.rb", "lib/fileutils/version.rb"]
s.files = ["LICENSE.txt", "README.md", "Rakefile", "fileutils.gemspec", "lib/fileutils.rb"]
s.required_ruby_version = ">= 2.3.0"

s.authors = ["Minero Aoki"]
s.email = [nil]
s.homepage = "https://github.com/ruby/fileutils"
s.license = "BSD-2-Clause"

if s.respond_to?(:metadata=)
s.metadata = {
"source_code_uri" => "https://github.com/ruby/fileutils"
}
end
s.metadata = {
"source_code_uri" => "https://github.com/ruby/fileutils"
}
end
3 changes: 1 addition & 2 deletions lib/fileutils.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
# for make mjit-headers
end

require_relative "fileutils/version"

#
# = fileutils.rb
#
Expand Down Expand Up @@ -104,6 +102,7 @@
# <tt>:verbose</tt> flags to methods in FileUtils.
#
module FileUtils
VERSION = "1.3.0"

def self.private_module_function(name) #:nodoc:
module_function name
Expand Down
5 changes: 0 additions & 5 deletions lib/fileutils/version.rb

This file was deleted.