tree_support 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 35b3da8eb68307c23ab1a39ffe096c55bb826f27
4
- data.tar.gz: 64366be7a67841d0f0c0fbc893e46835bf417f12
3
+ metadata.gz: 0d28623ade02c2a1b17f182d2dd1dad279fb2198
4
+ data.tar.gz: 9bbe41d05353fb16b9f06f3c854de3b2944396c4
5
5
  SHA512:
6
- metadata.gz: 405374ce91c625deb5ad2f7eb3a1e3a0d9d518be315c960f32d92e858a0afe12224dcfbb0b4eb3951a40fde02f0973652d90b108c356881572c74a3be6ef2d58
7
- data.tar.gz: cf0608091c08aaea0f5e099d4c1b439db05a2f8a2a4c3e3ed62efdb1f3444a22df0d798795213e2904417c960ed9cdda3e188fa1811ac5e7efd57b1fea774f07
6
+ metadata.gz: 7af75eb4d2401b905a67f25b321b0128a6749d2548018eac472c24cb70daeebce7c9936bd9ee10018078d507d7e5696058e55f9474f29869257bf3aa2f769676
7
+ data.tar.gz: 0afa8c12ae857aaf5e24fc04cfee7bd49730a5076fd18a4c3ad2c49abb189e654ea55147235c03b0ec72198d21100168b51c2eefe43d8f9d8cfd7a4dda65df8e
data/README.org CHANGED
@@ -2,6 +2,21 @@
2
2
 
3
3
  [[https://travis-ci.org/akicho8/tree_support.png]]
4
4
 
5
+ ** Installation
6
+
7
+ Install as a standalone gem
8
+
9
+ #+BEGIN_SRC shell
10
+ $ gem install tree_support
11
+ #+END_SRC
12
+
13
+ Or install within application using Gemfile
14
+
15
+ #+BEGIN_SRC shell
16
+ $ bundle add tree_support
17
+ $ bundle install
18
+ #+END_SRC
19
+
5
20
  ** How to use in one line
6
21
 
7
22
  Just pass the object that has the parent, children method to TreeSupport.tree
@@ -1,3 +1,3 @@
1
1
  module TreeSupport
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tree_support
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - akicho8