rpr 1.1.0 → 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +8 -1
- data/lib/rpr/version.rb +1 -1
- data/rpr.gemspec +2 -2
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5afc0a91f5ca9f7a01495117ca5ad9f9b0c9fedd
|
4
|
+
data.tar.gz: 0d26c7d1c4041fcdff9c9a408cf6b0564fb6fad4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7234c7a16397d9554a030cf3662f3cf06be788b450f7249276c5c0ed4aefb013e39f4fc74bf22e131251300755f4c1ace7dfb44a60ac18f9a83431b3394c1df1
|
7
|
+
data.tar.gz: c2863ef891e59aa6ff25103cf528f482914fdd1877451110b0a9289032b852d0680909e082b6fdb8f9fba7c3236c6d1b631d0078f503568035f28278f9f41ab6
|
data/README.md
CHANGED
@@ -1,8 +1,15 @@
|
|
1
1
|
# RPR
|
2
2
|
|
3
|
-
|
3
|
+
RPR displays Ruby's AST on command line.
|
4
4
|
|
5
5
|
[![Gem Version](https://badge.fury.io/rb/rpr.svg)](https://badge.fury.io/rb/rpr)
|
6
|
+
[![Build Status](https://travis-ci.org/pocke/rpr.svg?branch=master)](https://travis-ci.org/pocke/rpr)
|
7
|
+
|
8
|
+
## Support parsers
|
9
|
+
|
10
|
+
- [Ripper](http://ruby-doc.org/stdlib-2.3.0/libdoc/ripper/rdoc/Ripper.html)
|
11
|
+
- [RuboCop](https://github.com/bbatsov/rubocop)
|
12
|
+
- [Parser](https://github.com/whitequark/parser)
|
6
13
|
|
7
14
|
## Installation
|
8
15
|
|
data/lib/rpr/version.rb
CHANGED
data/rpr.gemspec
CHANGED
@@ -9,8 +9,8 @@ Gem::Specification.new do |spec|
|
|
9
9
|
spec.authors = ["Masataka Kuwabara"]
|
10
10
|
spec.email = ["p.ck.t22@gmail.com"]
|
11
11
|
|
12
|
-
spec.summary = %q{
|
13
|
-
spec.description = %q{
|
12
|
+
spec.summary = %q{RPR displays Ruby's AST on command line.}
|
13
|
+
spec.description = %q{RPR displays Ruby's AST on command line.}
|
14
14
|
spec.homepage = "https://github.com/pocke/rpr"
|
15
15
|
|
16
16
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rpr
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Masataka Kuwabara
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-07-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: pry
|
@@ -150,7 +150,7 @@ dependencies:
|
|
150
150
|
- - "~>"
|
151
151
|
- !ruby/object:Gem::Version
|
152
152
|
version: 2.1.0
|
153
|
-
description:
|
153
|
+
description: RPR displays Ruby's AST on command line.
|
154
154
|
email:
|
155
155
|
- p.ck.t22@gmail.com
|
156
156
|
executables:
|
@@ -203,5 +203,5 @@ rubyforge_project:
|
|
203
203
|
rubygems_version: 2.5.1
|
204
204
|
signing_key:
|
205
205
|
specification_version: 4
|
206
|
-
summary:
|
206
|
+
summary: RPR displays Ruby's AST on command line.
|
207
207
|
test_files: []
|