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 +4 -4
- data/README.org +15 -0
- data/lib/tree_support/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0d28623ade02c2a1b17f182d2dd1dad279fb2198
|
4
|
+
data.tar.gz: 9bbe41d05353fb16b9f06f3c854de3b2944396c4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
data/lib/tree_support/version.rb
CHANGED