lib/rio/if/grande.rb in rio-0.3.9 vs lib/rio/if/grande.rb in rio-0.4.0

- old
+ new

@@ -124,18 +124,18 @@ # ario['zippy*'] # same thing # # As with IF::Grande#each: # * Files and directories are returned as Rios # * The types of entries is also affected by IF::GrandeEntry#files and IF::GrandeEntry#dirs. - # rio('adir').files['*.txt'] # array of all _.txt_ files + # rio('adir').files['*.txt'] # array of all .txt files # rio('adir').dirs(/^\./) # array of all dot directories # * Recursion is enabled using IF::GrandeEntry#all - # rio('adir').all.files['*.[ch]'] # array of c source files in _adir_ and its subdirecories - # rio('adir').all.dirs[/^\.svn/] # array of subversion directories in _adir_ and subdirectories + # rio('adir').all.files['*.[ch]'] # array of c source files in adir and its subdirecories + # rio('adir').all.dirs[/^\.svn/] # array of subversion directories in adir and subdirectories # * IF::GrandeEntry#files and IF::GrandeEntry#dirs act independetly of each other. # Specifying both will cause both to be returned. # The argument list to IF::Grande#[] will be applied to the closest. - # rio('adir').files('*.rb').dirs['ruby*'] # array of _.rb_ files and + # rio('adir').files('*.rb').dirs['ruby*'] # array of .rb files and # # directories starting with 'ruby' # rio('adir').dirs('ruby*').files['*.rb'] # same thing # # === Lines # This section applies similarly to IF::GrandeStream#lines, IF::GrandeStream#bytes,