aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--lib/net/ftp.rb8
2 files changed, 13 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index cf9a59533d..a2a6197f85 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sun Sep 13 09:38:51 2015 Shugo Maeda <shugo@ruby-lang.org>
+
+ * lib/net/ftp.rb (size, modify, create, type, unique, perm, lang,
+ media_type, charset): new methods to return standard facts.
+
Sat Sep 12 19:43:49 2015 Koichi Sasada <ko1@atdot.net>
* vm_insnhelper.c (vm_call_iseq_setup_normal): do not clear local
diff --git a/lib/net/ftp.rb b/lib/net/ftp.rb
index f5d45a80a1..494cd478b1 100644
--- a/lib/net/ftp.rb
+++ b/lib/net/ftp.rb
@@ -781,6 +781,14 @@ module Net
@pathname = pathname
end
+ standard_facts = %w(size modify create type unique perm
+ lang media-type charset)
+ standard_facts.each do |factname|
+ define_method factname.gsub(/-/, "_") do
+ facts[factname]
+ end
+ end
+
#
# Returns +true+ if the entry is a file (i.e., the value of the type
# fact is file).