rpr 1.1.0 → 1.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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +8 -1
  3. data/lib/rpr/version.rb +1 -1
  4. data/rpr.gemspec +2 -2
  5. metadata +4 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0e3e4966534807640fa07c9c5a4582d307c144a8
4
- data.tar.gz: 67524b5f039708d2800f08d7dc12c20365214cdc
3
+ metadata.gz: 5afc0a91f5ca9f7a01495117ca5ad9f9b0c9fedd
4
+ data.tar.gz: 0d26c7d1c4041fcdff9c9a408cf6b0564fb6fad4
5
5
  SHA512:
6
- metadata.gz: 41e66cfb496f1b831061c85705c464e77e51836749c88fc2d9ba9faf63380a9054843d27732c164eed874e710ea455d525971597cdebd2f2e76217a554801a8f
7
- data.tar.gz: 18a93ae0e9aa189af4efb868207c4a2ff27705c15a19bcbbdaf7a0d6b6ceee8dbc32dc0645f3b2f96169f305150d00484a3ae0b52e50ea0068309ec754da642f
6
+ metadata.gz: 7234c7a16397d9554a030cf3662f3cf06be788b450f7249276c5c0ed4aefb013e39f4fc74bf22e131251300755f4c1ace7dfb44a60ac18f9a83431b3394c1df1
7
+ data.tar.gz: c2863ef891e59aa6ff25103cf528f482914fdd1877451110b0a9289032b852d0680909e082b6fdb8f9fba7c3236c6d1b631d0078f503568035f28278f9f41ab6
data/README.md CHANGED
@@ -1,8 +1,15 @@
1
1
  # RPR
2
2
 
3
- [Ripper](http://ruby-doc.org/stdlib-2.3.0/libdoc/ripper/rdoc/Ripper.html) :heart: Command Line.
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
 
@@ -1,3 +1,3 @@
1
1
  module Rpr
2
- VERSION = "1.1.0"
2
+ VERSION = "1.1.1"
3
3
  end
@@ -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{Ripper on command line}
13
- spec.description = %q{Ripper on command line}
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.0
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-05-31 00:00:00.000000000 Z
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: Ripper on command line
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: Ripper on command line
206
+ summary: RPR displays Ruby's AST on command line.
207
207
  test_files: []