indentation-parser 1.0.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.
data/README.md CHANGED
@@ -1,5 +1,3 @@
1
- _This is not complete yet! More to come in the next weeks, so stay tuned._
2
-
3
1
  # Indentation-Parser
4
2
 
5
3
  [![Build Status](https://secure.travis-ci.org/ssmm/indentation-parser.png)](http://travis-ci.org/ssmm/indentation-parser)
@@ -64,8 +62,6 @@ puts output.this.is.the.second.one
64
62
  puts output.this.serves.as.another.example
65
63
  ```
66
64
 
67
- # Details
68
-
69
65
  ## Hooks
70
66
 
71
67
  The following hooks are available:
@@ -1,10 +1,9 @@
1
1
  # -*- encoding: utf-8 -*-
2
- require File.expand_path('../lib/indentation-parser/version', __FILE__)
3
2
 
4
3
  Gem::Specification.new do |gem|
5
4
  gem.name = "indentation-parser"
6
- gem.version = Indentation::Parser::VERSION
7
-
5
+ gem.version = "1.0.1"
6
+
8
7
  gem.authors = ["Samuel Müller"]
9
8
  gem.email = ["mueller.samu@gmail.com"]
10
9
  gem.description = %q{Parses source code that defines context by indentation.}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: indentation-parser
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -45,7 +45,6 @@ files:
45
45
  - lib/indentation-parser/handlers.rb
46
46
  - lib/indentation-parser/hooks.rb
47
47
  - lib/indentation-parser/node.rb
48
- - lib/indentation-parser/version.rb
49
48
  - spec/material/an.example
50
49
  - spec/material/test.mylang
51
50
  - spec/material/the.universe
@@ -1,5 +0,0 @@
1
- module Indentation
2
- module Parser
3
- VERSION = "1.0.0"
4
- end
5
- end