blm 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/VERSION +1 -1
  2. data/blm.gemspec +1 -1
  3. data/lib/blm.rb +1 -1
  4. data/spec/blm_spec.rb +1 -1
  5. metadata +3 -3
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.1
1
+ 0.1.2
data/blm.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{blm}
8
- s.version = "0.1.1"
8
+ s.version = "0.1.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Robert May"]
data/lib/blm.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module BLM
2
- class Parser
2
+ class Document
3
3
  def initialize(source)
4
4
  @source = source
5
5
  end
data/spec/blm_spec.rb CHANGED
@@ -3,7 +3,7 @@ require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
3
3
  describe BLM do
4
4
  context "reading a .blm file" do
5
5
  before :all do
6
- @blm = BLM::Parser.new( File.open(File.dirname(__FILE__) + "/blm/example_data.blm", "r").read )
6
+ @blm = BLM::Document.new( File.open(File.dirname(__FILE__) + "/blm/example_data.blm", "r").read )
7
7
  end
8
8
 
9
9
  it "should parse settings from the header" do
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 1
9
- version: 0.1.1
8
+ - 2
9
+ version: 0.1.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - Robert May
@@ -112,7 +112,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
112
112
  requirements:
113
113
  - - ">="
114
114
  - !ruby/object:Gem::Version
115
- hash: -195538627
115
+ hash: -665812179
116
116
  segments:
117
117
  - 0
118
118
  version: "0"