babel_bridge 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.
data/babel_bridge.gemspec CHANGED
@@ -1,6 +1,8 @@
1
+ require File.join(File.dirname(__FILE__),"lib/babel_bridge.rb")
2
+
1
3
  $gemspec = Gem::Specification.new do |s|
2
4
  s.name = "babel_bridge"
3
- s.version = "0.1.0"
5
+ s.version = BabelBridge::VERSION
4
6
  s.author = "Shane Brinkman-Davis"
5
7
  s.date = "2010-11-28"
6
8
  s.email = "shanebdavis@gmail.com"
@@ -11,4 +13,4 @@ $gemspec = Gem::Specification.new do |s|
11
13
  s.description = "Babel Bridge let's you generate parsers 100% in Ruby code. It is a memoizing Parsing Expression Grammar (PEG) generator like Treetop, but it doesn't require special file-types or new syntax. Overall focus is on simplicity and usability over performance."
12
14
  s.files = ["LICENSE", "README", "Rakefile", "babel_bridge.gemspec", "{test,lib,doc,examples}/**/*"].map{|p| Dir[p]}.flatten
13
15
  s.has_rdoc = false
14
- end
16
+ end
data/lib/babel_bridge.rb CHANGED
@@ -51,6 +51,7 @@ class String
51
51
  end
52
52
 
53
53
  module BabelBridge
54
+ VERSION = "0.1.1"
54
55
 
55
56
  # hash which can be used declaratively
56
57
  class PatternElementHash < Hash
metadata CHANGED
@@ -1,7 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: babel_bridge
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ prerelease: false
5
+ segments:
6
+ - 0
7
+ - 1
8
+ - 1
9
+ version: 0.1.1
5
10
  platform: ruby
6
11
  authors:
7
12
  - Shane Brinkman-Davis
@@ -38,21 +43,25 @@ rdoc_options: []
38
43
  require_paths:
39
44
  - lib
40
45
  required_ruby_version: !ruby/object:Gem::Requirement
46
+ none: false
41
47
  requirements:
42
48
  - - ">="
43
49
  - !ruby/object:Gem::Version
50
+ segments:
51
+ - 0
44
52
  version: "0"
45
- version:
46
53
  required_rubygems_version: !ruby/object:Gem::Requirement
54
+ none: false
47
55
  requirements:
48
56
  - - ">="
49
57
  - !ruby/object:Gem::Version
58
+ segments:
59
+ - 0
50
60
  version: "0"
51
- version:
52
61
  requirements: []
53
62
 
54
63
  rubyforge_project: babel-bridge
55
- rubygems_version: 1.3.5
64
+ rubygems_version: 1.3.7
56
65
  signing_key:
57
66
  specification_version: 3
58
67
  summary: A Ruby-based parser-generator based on Parsing Expression Grammars.