yml_reader 0.1 → 0.2

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.
@@ -0,0 +1,6 @@
1
+ === Version 0.2 / 2012-6-9
2
+ * Fixes
3
+ * Fixed issue with getting default directory
4
+
5
+ === Version 0.1 / 2012-5-3
6
+ Initial Release
data/README.md CHANGED
@@ -40,10 +40,6 @@ Or install it yourself as:
40
40
 
41
41
  $ gem install yml_reader
42
42
 
43
- ## Usage
44
-
45
- TODO: Write usage instructions here
46
-
47
43
  ## Contributing
48
44
 
49
45
  1. Fork it
@@ -23,7 +23,7 @@ module YmlReader
23
23
  # directory specified by a call to the yml_directory= method.
24
24
  #
25
25
  def load(filename)
26
- @yml = YAML.load_file "#{@yml_directory}/#{filename}"
26
+ @yml = YAML.load_file "#{yml_directory}/#{filename}"
27
27
  end
28
28
 
29
29
  end
@@ -1,3 +1,3 @@
1
1
  module YmlReader
2
- VERSION = "0.1"
2
+ VERSION = "0.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yml_reader
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.1'
4
+ version: '0.2'
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-05-03 00:00:00.000000000 Z
12
+ date: 2012-06-09 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: Sets a directory and reads yml files
15
15
  email:
@@ -21,6 +21,7 @@ files:
21
21
  - .gitignore
22
22
  - .rspec
23
23
  - .rvmrc
24
+ - ChangeLog
24
25
  - Gemfile
25
26
  - Guardfile
26
27
  - LICENSE