garaj 0.1.0 → 0.1.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.
@@ -1,5 +1,9 @@
1
1
  ## head
2
2
 
3
+ ## v0.1.1
4
+
5
+ * Fix typo in Garaj::Project class
6
+
3
7
  ## v0.1.0
4
8
 
5
9
  * Add syntax highlighting via pygments.rb
@@ -44,7 +44,7 @@ module Garaj
44
44
  def files_at(relative_path)
45
45
  files = []
46
46
  Dir.foreach(full_path_to(relative_path)) do |entry|
47
- if !path_is_dir?("#{relative_path)}/#{entry}") and not_ignored?(entry)
47
+ if !path_is_dir?("#{relative_path}/#{entry}") and not_ignored?(entry)
48
48
  files << entry
49
49
  end
50
50
  end
@@ -55,7 +55,7 @@ module Garaj
55
55
  def dirs_at(relative_path)
56
56
  dirs = []
57
57
  Dir.foreach(full_path_to(relative_path)) do |entry|
58
- if path_is_dir?("#{relative_path)}/#{entry}") and not_ignored?(entry)
58
+ if path_is_dir?("#{relative_path}/#{entry}") and not_ignored?(entry)
59
59
  dirs << entry
60
60
  end
61
61
  end
@@ -1,3 +1,3 @@
1
1
  module Garaj
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: garaj
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: