let_it_fall 0.1.1 → 0.1.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d0cf6f3e0b9eec7b7be21f0acaa82870327fd456
4
- data.tar.gz: 2022ddaea631e2297a6eb8118251afbcf1564d05
3
+ metadata.gz: dae8e6225963938ab9048a2ab1f5be6cbfd435d8
4
+ data.tar.gz: 68addd2e604c735d14fdf608d8845d1a05d811c9
5
5
  SHA512:
6
- metadata.gz: c25ec23290c61830447469fb7b102c25059763dcf600a824785337ee790249dfe14807f796edba52d84b0762e20276f0d2af0d96ca2020cf52b20e067b18ddf4
7
- data.tar.gz: 8f4030cd6a334dd70d52e35ab7305cba399e6bbaeb4035399d5c31408e3e59dfcee8d5ce396c1ccef226970f85c25e4151b1e19968effbd38fa42f4b3db042a5
6
+ metadata.gz: 07e11407764b1b2809a79459ce81160a8210766e8e6422e0c4f370cb17bd95fecb0fe8311b0457819c93333daa727e51dfacb536b1921ce27cbb5cd1eb4bec45
7
+ data.tar.gz: 2f93cfc60afe58dca31e6bd53e2d603b33ed765a904d1cc8a48603674c04d1334e6b384c1fa964e84e4c8f1f98277441c8cd32c429b6cd902f68bbf4766dd771
data/README.md CHANGED
@@ -18,15 +18,25 @@ Or install it yourself as:
18
18
 
19
19
  ## Usage
20
20
 
21
- open Mac terminal, then try following command.
21
+ Open the Mac terminal, then try following command.
22
22
 
23
23
  $ let_it_fall beer
24
24
 
25
- Or
25
+ You also enjoy over 40 commands other than `beer` like `money`, `face` or `kanji`.
26
26
 
27
- $ let_it_fall code 0x2660 0x2666 -r
27
+ `code` command is a special. It takes one or more unicodes which specify characters to fall.
28
28
 
29
- `let_it_fall help` for more info.
29
+ $ let_it_fall code 0x2660 0x2666 -r # code command with --range option
30
+
31
+ Or try `matrix` command.
32
+
33
+ $ let_it_fall matrix
34
+
35
+ If you prefer another character rather than latin one, pass it to the command.
36
+
37
+ $ let_it_fall matrix kanji
38
+
39
+ These command takes `--speed` option(ex. -s=2), and some also takes `--color` option(ex. -c=31). `let_it_fall help` for more info.
30
40
 
31
41
  ## Contributing
32
42
 
@@ -27,7 +27,7 @@ module LetItFall
27
27
  run(mark, options[:speed], options[:color], true)
28
28
  end
29
29
 
30
- desc "code [CODE]", "Let specific character fall"
30
+ desc "code CODE", "Let specific character fall with unicode(s)"
31
31
  option :speed, aliases:'-s', default:1, type: :numeric
32
32
  option :color, aliases:'-c', default:nil, type: :numeric
33
33
  option :range, aliases:'-r', default:false, type: :boolean
@@ -49,6 +49,7 @@ module LetItFall
49
49
  kiss: 0x1F48B,
50
50
  alphabet: [*0x0041..0x005A, *0x0061..0x007A],
51
51
  latin: [*0x0021..0x007E, *0x00A1..0x00FF, *0x0100..0x017F, *0x0250..0x02AF],
52
-
52
+ dingbat: (0x2701..0x27BF),
53
+ arrow: (0x2190..0x21FF),
53
54
  }
54
55
  end
@@ -1,3 +1,3 @@
1
1
  module LetItFall
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: let_it_fall
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - kyoendo