parser 2.2.0.pre.1 → 2.2.0.pre.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 10f455448f51aa606feb4fbf08c4a2373003bc5a
4
- data.tar.gz: 8756b85cb0e44b5be39ae8349af7527ab9d0a847
3
+ metadata.gz: 7904839f6015d6a616f8b09ccbda8bdda64642aa
4
+ data.tar.gz: 34617415104be887b446c2eeaef48a9679b9674b
5
5
  SHA512:
6
- metadata.gz: d7a423e524b8a330ccd8c9df8fe3056b9853259703c4a1cd4f9af987954cb6ef7298a76ba73cb899e84f92fb3fa0ad59464aef8a8e27791fe489df18bf5abbfc
7
- data.tar.gz: 0a1eaf698cc9977a104269d9d69786e2fb01ff08e735b3851cc4aad5cbb15fc0ef10f3675efefdea06f1d9a487f88d2608f303ef6f72b828352fcfd5e7ec7a6a
6
+ metadata.gz: a18caf32936e91ac87217aad5b8d4085762c14d1f163ca79a5a08427815e62447312ea1ebadb78d0f50b13da6ea8349377e259ba99353f9f75911513aa1f3a5b
7
+ data.tar.gz: 614967deaa69a24f8d7a752cd827ddf8d0d27d3c6ace0ba14a23a331ea89e877d0186e396722b50d611253cbad94b12c349d377d7592e4ffe0f9e9421c4776a3
@@ -1,6 +1,12 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
+ v2.2.0.pre.2 (2014-06-14)
5
+ -------------------------
6
+
7
+ Bugs fixed:
8
+ * ruby22.rb: include in gemspec. (Peter Zotov)
9
+
4
10
  v2.2.0.pre.1 (2014-06-12)
5
11
  -------------------------
6
12
 
@@ -1,3 +1,3 @@
1
1
  module Parser
2
- VERSION = '2.2.0.pre.1'
2
+ VERSION = '2.2.0.pre.2'
3
3
  end
@@ -19,6 +19,7 @@ Gem::Specification.new do |spec|
19
19
  lib/parser/ruby19.rb
20
20
  lib/parser/ruby20.rb
21
21
  lib/parser/ruby21.rb
22
+ lib/parser/ruby22.rb
22
23
  )
23
24
  spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
24
25
  spec.test_files = spec.files.grep(%r{^test/})
@@ -10,9 +10,9 @@ class TestCurrent < Minitest::Test
10
10
  assert_equal Parser::Ruby19, Parser::CurrentRuby
11
11
  when '2.0.0'
12
12
  assert_equal Parser::Ruby20, Parser::CurrentRuby
13
- when '2.1.0', '2.1.1', '2.1.2'
13
+ when /^2\.1\.\d+/
14
14
  assert_equal Parser::Ruby21, Parser::CurrentRuby
15
- when '2.2.0'
15
+ when /^2\.2\.\d+/
16
16
  assert_equal Parser::Ruby22, Parser::CurrentRuby
17
17
  else
18
18
  flunk "Update test_parser_current for #{RUBY_VERSION}"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: parser
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.0.pre.1
4
+ version: 2.2.0.pre.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Zotov
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-06-12 00:00:00.000000000 Z
11
+ date: 2014-06-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ast
@@ -292,6 +292,7 @@ files:
292
292
  - lib/parser/ruby20.y
293
293
  - lib/parser/ruby21.rb
294
294
  - lib/parser/ruby21.y
295
+ - lib/parser/ruby22.rb
295
296
  - lib/parser/ruby22.y
296
297
  - lib/parser/runner.rb
297
298
  - lib/parser/runner/ruby_parse.rb