live_ast 0.5.1 → 0.5.2

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGES.rdoc CHANGED
@@ -1,6 +1,10 @@
1
1
 
2
2
  = LiveAST ChangeLog
3
3
 
4
+ == Version 0.5.2
5
+
6
+ * fix default plugin version
7
+
4
8
  == Version 0.5.1
5
9
 
6
10
  * protect against user needlessly requiring default parser
data/Rakefile CHANGED
@@ -16,5 +16,5 @@ Jumpstart.new "live_ast" do |s|
16
16
  ]
17
17
  s.rdoc_options << "-a"
18
18
 
19
- s.dependencies = ["live_ast_ruby_parser"]
19
+ s.dependencies << ["live_ast_ruby_parser", ">= 0.5.1"]
20
20
  end
@@ -1,3 +1,3 @@
1
1
  module LiveAST
2
- VERSION = "0.5.1"
2
+ VERSION = "0.5.2"
3
3
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: live_ast
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.5.1
5
+ version: 0.5.2
6
6
  platform: ruby
7
7
  authors:
8
8
  - James M. Lawrence
@@ -21,7 +21,7 @@ dependencies:
21
21
  requirements:
22
22
  - - ">="
23
23
  - !ruby/object:Gem::Version
24
- version: "0"
24
+ version: 0.5.1
25
25
  type: :runtime
26
26
  version_requirements: *id001
27
27
  description: LiveAST enables a program to find the ASTs of objects created by dynamically generated code.