transpec 3.2.0 → 3.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 24998882f9a56b533e6027ecb48dd839d12058a2
4
- data.tar.gz: b1d95a3546c84a823b42215c04212aebdf56d1ab
3
+ metadata.gz: ce04aae5737a0cb6b5fbf8e0f711b4cfa9fb155d
4
+ data.tar.gz: c1bd98574a0fc24ef5ddda9b1c95a8d1f6053546
5
5
  SHA512:
6
- metadata.gz: 8ee8237a85015f4350103edea5bd432ec7be47c06cc92f620148e048ce3ad467992742c8820fa3be7634cb0100c69a2382e0dc68395e75c87248398543652e5e
7
- data.tar.gz: 451f3ab8aaa8fb53cd716ffc0cfb5fcc49019ef4592e9a060e0c24ab54a82caa2186d77dc0b430584dbf3d90774bf54ed5451eb3a7224ef9dff17eacf9c0d989
6
+ metadata.gz: 549c7ee3c9f2f0b0024560f6f41b093fc624750a5e23607a6940430e24b8bd11c8d6f87c23b8632f28b7c2bd0ac23d7b505631435db9d18426819413c8cee474
7
+ data.tar.gz: a41bd58995da28e06d2dbb3b03f4a2ad1d61537dcfb1d308eb3479d3e1560ceeaa4ad97ca28cb5bcd568e7b2588664100db38cef84970e0bcff51a64391de69f
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## Development
4
4
 
5
+ ## v3.2.1
6
+
7
+ * Pin `parser` gem to 2.3.0.2 temporarily so that dynamic analysis works properly.
8
+
5
9
  ## v3.2.0
6
10
 
7
11
  * Support Ruby 2.3 syntax.
data/README.md CHANGED
@@ -175,7 +175,7 @@ so that Transpec can know where the root is.
175
175
  You can disable specific conversions that are enabled by default with `-k/--keep` option,
176
176
  and enable conversions that are disabled by default with the `-v/--convert` option.
177
177
 
178
- If you are willing to try the latest and modern syntax, type the following:
178
+ If you are willing to try the latest and modern syntax, run the following on RSpec 3:
179
179
 
180
180
  ```
181
181
  $ transpec --convert example_group,hook_scope
@@ -149,7 +149,7 @@ so that Transpec can know where the root is.
149
149
  You can disable specific conversions that are enabled by default with `-k/--keep` option,
150
150
  and enable conversions that are disabled by default with the `-v/--convert` option.
151
151
 
152
- If you are willing to try the latest and modern syntax, type the following:
152
+ If you are willing to try the latest and modern syntax, run the following on RSpec 3:
153
153
 
154
154
  ```
155
155
  $ transpec --convert example_group,hook_scope
@@ -5,7 +5,7 @@ module Transpec
5
5
  module Version
6
6
  MAJOR = 3
7
7
  MINOR = 2
8
- PATCH = 0
8
+ PATCH = 1
9
9
 
10
10
  def self.to_s
11
11
  [MAJOR, MINOR, PATCH].join('.')
@@ -23,7 +23,7 @@ Gem::Specification.new do |spec|
23
23
 
24
24
  spec.required_ruby_version = '>= 1.9.3'
25
25
 
26
- spec.add_runtime_dependency 'parser', '~> 2.3'
26
+ spec.add_runtime_dependency 'parser', '2.3.0.2' # FIXME
27
27
  spec.add_runtime_dependency 'astrolabe', '~> 1.2'
28
28
  spec.add_runtime_dependency 'bundler', '~> 1.3'
29
29
  spec.add_runtime_dependency 'rainbow', '>= 1.99.1', '< 3.0'
metadata CHANGED
@@ -1,29 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: transpec
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.0
4
+ version: 3.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yuji Nakayama
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-02-06 00:00:00.000000000 Z
11
+ date: 2016-02-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: parser
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: '2.3'
19
+ version: 2.3.0.2
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: '2.3'
26
+ version: 2.3.0.2
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: astrolabe
29
29
  requirement: !ruby/object:Gem::Requirement