rubyrb 0.0.1 → 0.0.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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +5 -1
  3. data/bin/rb +4 -0
  4. data/lib/rubyrb/version.rb +1 -1
  5. metadata +4 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5cbb8d8a7ef84a223b6d35312d8693a0cc2468e8
4
- data.tar.gz: 13b880c5debb9ad6d2cebd9e6afec5bded30b9f9
3
+ metadata.gz: 2756c6588e4044dab79c21ee3f4a80ea9ac6ce1e
4
+ data.tar.gz: d8c30390df42a4a81c40db0b275d06140025be40
5
5
  SHA512:
6
- metadata.gz: a253eacce65f78283b53bbbe0160ee1c37f9c8fa3d29c3e3be457276fc128dcde1c6053b8a85ee011fa108a9fd203d14708114f3a9c5e72ab853ee3a4196044b
7
- data.tar.gz: ced094e705f77458160df2cc1cef43068d0fb96cce5334f98021cfad0be91c848604c3deaa7ede407a1648a4734ec4c168ffa44c851a58bbd459f8d5df0c631f
6
+ metadata.gz: 303364fcb8ae8a07aaae7e0d2cd7cdd2a7ab2b948992cbbb9885468f5b1e6855dc6caaaad19dcfea015fc50a195fbfb7e7b16ba3abbc6d618136683fdc7816d2
7
+ data.tar.gz: 208a2f212a1aadd7ba96f4a00f24da3851c15ac4e064a509d62bbdec36faa32212f3cabe5727390485f52e79c5e3316ee5301b831540ff888b650652602f9baf
data/README.md CHANGED
@@ -1,9 +1,13 @@
1
1
  # Rubyrb
2
2
 
3
- https://github.com/radar/guides/blob/master/gem-development.md
3
+ https://github.com/Russell91/pythonpy
4
+
5
+ https://github.com/radar/guides/blob/master/gem-development.md
6
+
4
7
  run tests:
5
8
  bundle exec rspec spec
6
9
  rake build
10
+ rake install
7
11
  rake release
8
12
  ## Installation
9
13
 
data/bin/rb ADDED
@@ -0,0 +1,4 @@
1
+ #! /usr/bin/env ruby
2
+ # require "rubyrb"
3
+
4
+ puts ARGV
@@ -1,3 +1,3 @@
1
1
  module Rubyrb
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubyrb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - xhan
@@ -55,7 +55,8 @@ dependencies:
55
55
  description: a ruby style awk
56
56
  email:
57
57
  - xhan87@gmail.com
58
- executables: []
58
+ executables:
59
+ - rb
59
60
  extensions: []
60
61
  extra_rdoc_files: []
61
62
  files:
@@ -64,6 +65,7 @@ files:
64
65
  - LICENSE.txt
65
66
  - README.md
66
67
  - Rakefile
68
+ - bin/rb
67
69
  - lib/rubyrb.rb
68
70
  - lib/rubyrb/test.rb
69
71
  - lib/rubyrb/version.rb