tate 0.1.2 → 0.1.3

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 +20 -20
  3. data/lib/tate/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5199b949ebc1efadf042cbb06f99d0701620e464
4
- data.tar.gz: d805ee53642bd09655732a545b560459fe9c54a4
3
+ metadata.gz: a8ae3f85ef4a2c182e127d2413579bc526d5b882
4
+ data.tar.gz: a4e95d5ce52665b56a32e65c0fb53cbfcb3ea514
5
5
  SHA512:
6
- metadata.gz: 5f04b40a7581eaf2a75bc750df7476a59b96b7bc5a268c9dca7302c27565f6584cd76cf5346d52ce2ee502d4e5b270186a99ccc982bf5aea0602c11cbbe93800
7
- data.tar.gz: db19087b78f6e9abd26872a6fc09cd4f1ccd656ac65c8d23041aa7bb1d02349de49c96cdcbb7dfa7286de9947fedb2bb1c07b8cac13888c5761e8e238f1ffc07
6
+ metadata.gz: e61ba505fff5d08f6beec8448e94e22e5b76c786bf7be930504762a9269e786cc9f7af834cc127cbc2024e248c7498862ff2fd01d6c19f526f4f77368d557eaa
7
+ data.tar.gz: 79d8da36bf8fac980e6b5cc1706f26307114089b51530392359d838e5db4ddaf13137b4e1068c793c097f21379c8e1105e7d1d5afed561adb8142b9bebd8b44b
data/README.md CHANGED
@@ -4,26 +4,6 @@
4
4
 
5
5
  **tate** is a productivity tool, it behaves like a standard Unix application and can be chained with other Unix commands. It only reads from standard input and writes to standard output.
6
6
 
7
- ## Installation
8
-
9
- Add this line to your application's Gemfile:
10
-
11
- ```ruby
12
- gem 'tate'
13
- ```
14
-
15
- And then execute:
16
-
17
- ```sh
18
- $ bundle
19
- ```
20
-
21
- Or install it yourself as:
22
-
23
- ```sh
24
- $ gem install tate
25
- ```
26
-
27
7
  ## Examples
28
8
 
29
9
  Let's say you have a French sentence with a lot of weird characters and you want to convert it into ASCII in the most representative way. You can use:
@@ -51,6 +31,26 @@ If you call `tate` without providing any input, like a standard Unix command it
51
31
 
52
32
  Yes.
53
33
 
34
+ ## Installation
35
+
36
+ Add this line to your application's Gemfile:
37
+
38
+ ```ruby
39
+ gem 'tate'
40
+ ```
41
+
42
+ And then execute:
43
+
44
+ ```sh
45
+ $ bundle
46
+ ```
47
+
48
+ Or install it yourself as:
49
+
50
+ ```sh
51
+ $ gem install tate
52
+ ```
53
+
54
54
  ## Contributing
55
55
 
56
56
  1. Fork it (https://github.com/krmbzds/tate/fork)
data/lib/tate/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Tate
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tate
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kerem Bozdas