christiank-entries_visible 1.0 → 1.0.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.
Files changed (2) hide show
  1. data/entries_visible.rb +2 -2
  2. metadata +3 -2
data/entries_visible.rb CHANGED
@@ -12,6 +12,6 @@
12
12
 
13
13
  class Dir
14
14
  def Dir.entries_visible dir
15
- return Dir.entries(dir).delete_if { |entry| entry[0, 1] == '.' }
15
+ Dir.entries(dir).delete_if { |entry| entry[0, 1] == '.' }
16
16
  end
17
- end
17
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: christiank-entries_visible
3
3
  version: !ruby/object:Gem::Version
4
- version: "1.0"
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Christian Koch
@@ -25,6 +25,7 @@ files:
25
25
  - entries_visible.rb
26
26
  has_rdoc: false
27
27
  homepage: http://github.com/christiank/entries_visible
28
+ licenses:
28
29
  post_install_message:
29
30
  rdoc_options: []
30
31
 
@@ -45,7 +46,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
45
46
  requirements: []
46
47
 
47
48
  rubyforge_project:
48
- rubygems_version: 1.2.0
49
+ rubygems_version: 1.3.5
49
50
  signing_key:
50
51
  specification_version: 2
51
52
  summary: List only the visible contents in a directory.