pryx 0.4.1 → 0.4.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +12 -10
  3. data/lib/pryx/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '09eac82758bc4ccc6f232842efacfb4d6949bc2e4ed5a4a0e3277a6b239915b0'
4
- data.tar.gz: f8244fb13a69f0db1973c80d24d6ca01fa63f54a486d968556e9844ec62cdc5a
3
+ metadata.gz: 8dc55b47663a1ef4812e8c462d08d69816ca9e8034c39cf73f118e57c020eada
4
+ data.tar.gz: ea4bc22be549f9dcd3ba149ae8c1946f258564d10b9a4126c150115fe3cd6df1
5
5
  SHA512:
6
- metadata.gz: e827a19c29a4ec79ea836675183649ed897abaedbee169cf920f64940efe0b83a11af8102f22957f0ba139b35edc4cfcb067a9eaee30a36cbbdff75f9bb3a922
7
- data.tar.gz: 5e7cd1b9e5d80ba3cd4d74fc20422f2151566958c2247e9a5eb92d869596a0b6a0f1d3e1aa2e73308daa1803917bb3f21ca2738ab15526f807b973a33673d43f
6
+ metadata.gz: 5b8dacec92274b90a844479b7a0c1b473fc1a84e530a9da411a021dfe32476283a86b91c3219a1c8e8d3459319cf1838ce271a0070880bde6a8338130ad64286
7
+ data.tar.gz: 1e36fb07f093e6d53079fb8d4a074b3c391cceebab425602fc60df8e5bfec55cd3647232dd87de6a949f584a73ad448847245d8218c61565afc365de46f1ee26
data/README.md CHANGED
@@ -2,11 +2,6 @@
2
2
 
3
3
  Three Virtues of a Programmer: Laziness, Impatience, and Hubris. -- Larry Wall, the author of Perl Programming language.
4
4
 
5
-
6
- ## Philosophy
7
-
8
- TODO: Write philosophy
9
-
10
5
  ## Getting Started
11
6
 
12
7
  Don't add this gem into bundler's Gemfile.
@@ -82,17 +77,24 @@ we have irb1 and irb2 too.
82
77
  ### pry3
83
78
 
84
79
  It just normal `binding.pry`, that is, will always be intercept if code can reach.
85
- but above plugins and library all correct configured.
80
+ but above plugins and libraries all correct configured.
86
81
 
87
82
  we have another Kernel#pry?, which enable `pry-state` automatically, see [pry-state](https://github.com/SudhagarS/pry-state)
88
83
 
89
- ## Support
84
+ ### we have two binary, pryx, irbx
90
85
 
91
- * MRI 2.2+
86
+ pryx is same as pry, but, with plugins and libraries correct configured.
92
87
 
93
- ## Dependency
88
+ irbx is same for irb.
94
89
 
95
- No known limit.
90
+ ## Philosophy
91
+
92
+ This gem is design to maximum limit take effect current ruby program, so, it should be safe to use it.
93
+ But, you should only use it when development, though, it was tested when use in docker-compose container too.
94
+
95
+ ## Support
96
+
97
+ * MRI 2.2+
96
98
 
97
99
  ## History
98
100
 
data/lib/pryx/version.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Pryx
4
- VERSION = [0, 4, 1]
4
+ VERSION = [0, 4, 2]
5
5
 
6
6
  class << VERSION
7
7
  include Comparable
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pryx
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 0.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Billy.Zheng(zw963)