arboriculture 1.0.0 → 1.0.1

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
  SHA256:
3
- metadata.gz: f17f70c6854d8ef195b15f58d564cbce590a5d4fd43d5270a0bce69c366e7895
4
- data.tar.gz: b1014241915e3dc0229ba0ae8437c55b1cc7011ead7b7b2c8f481b238697a25c
3
+ metadata.gz: ce38a9228d81f5096a706937c3ba0b14834b8b45012aa23c9db528a97b31fb13
4
+ data.tar.gz: 4ccfc6058a27a7eb9d60787d3a179dff6261e7d42384b10a036f2048ac733384
5
5
  SHA512:
6
- metadata.gz: 85fa5ca6e7ba0a80997fa10818a4c8753fac6444cbeeb6a2fd4016ad56011d378a4db1cc9f735058b5deaa859c90bcc401bf02475d19e1b285c3b59ba8d8050d
7
- data.tar.gz: 8cdfa0bc38760d9c0d9f3754a01d796f4204441a194b91e88ae1df6bd0ff4d3d1e0969031d7fa003c2e34ab4d038a8d0d22413781dfbdc241d3e323fccf2cdb7
6
+ metadata.gz: 59c59022a5cc6fe7b6a868a23449656a169b426127e8155494b677b535201cecf66540104c0270113c8e11fd4bc49e9ccb1ece2f1d3710984296df57319d0628
7
+ data.tar.gz: 3c599089153b55bab6fab9c9029d03302908e2a2213bf7eb166c6fe7c59daf942a66b64a1c5ccafe13afe5bf374c814fc81197d410653fced0dd25ccfd7ae58b
data/README.md CHANGED
@@ -1 +1,25 @@
1
1
  # Arboriculture
2
+
3
+ A gem for building trees.
4
+
5
+ ### Example
6
+
7
+ ```ruby
8
+ Arboriculture.build do
9
+ div(:class => 'big') do
10
+ text 'Hello'
11
+ text 'world'
12
+ end
13
+ end
14
+ ```
15
+
16
+ Will give you this tree:
17
+
18
+ ```ruby
19
+ Arboriculture::Node.new(:div, [], {:class => 'big'},
20
+ [
21
+ Arboriculture::Node.new(:text, ['Hello'], {}, []),
22
+ Arboriculture::Node.new(:text, ['world'], {}, [])
23
+ ]
24
+ )
25
+ ```
@@ -1,5 +1,5 @@
1
1
  module Arboriculture
2
2
 
3
- VERSION = '1.0.0'
3
+ VERSION = '1.0.1'
4
4
 
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: arboriculture
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nick Vladimiroff
@@ -33,6 +33,7 @@ files:
33
33
  - lib/arboriculture.rb
34
34
  - lib/arboriculture/builder.rb
35
35
  - lib/arboriculture/version.rb
36
+ homepage: https://github.com/nvladimiroff/arboriculture
36
37
  licenses:
37
38
  - MIT
38
39
  metadata: {}
@@ -52,5 +53,5 @@ required_rubygems_version: !ruby/object:Gem::Requirement
52
53
  requirements: []
53
54
  rubygems_version: 3.6.2
54
55
  specification_version: 4
55
- summary: Build trees.
56
+ summary: A gem for building trees.
56
57
  test_files: []