rbytes 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +12 -4
- data/lib/ruby_bytes/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 240c05001c82217a6c81800227e8043364abf995559420377265e921bf8b30a6
|
4
|
+
data.tar.gz: 44c8486ef55774b3fbf8bf6781dc17202e2b5e9a8f885fe7db8395ca7fa59e0c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d85b989709ffb1a3eb9a820516a5097bc87a6788b6384faa36ca00ec2608e9df7a366383826761b7938dfbcf6976b5335cfb90ce1d667af61c1c957fa88b6ec1
|
7
|
+
data.tar.gz: 149d5ec020537aaedb78c5d17d6dd9e56f75d33493b22ec6f12b1679515065f672e9bb91859a726bb90ee38766ec5ed3a61f4ffb08801e4fd315bc9be22e28c8
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -53,7 +53,15 @@ You can also install Ruby Bytes as a plugin for Thor (see [Thor integration](#th
|
|
53
53
|
|
54
54
|
## Writing templates
|
55
55
|
|
56
|
-
|
56
|
+
The quickest way to get started with using Ruby Bytes to build templates is to use our generator to create a project:
|
57
|
+
|
58
|
+
```sh
|
59
|
+
$ rbytes install https://railsbytes.com/script/V2GsbB
|
60
|
+
|
61
|
+
...
|
62
|
+
```
|
63
|
+
|
64
|
+
### Splitting template into partials
|
57
65
|
|
58
66
|
Ruby Bytes adds partial support to Thor/Rails templates. For that, you can use `#include` and `#render` methods:
|
59
67
|
|
@@ -80,7 +88,7 @@ cable_adapter = ask? "Which AnyCable pub/sub adapter do you want to use?"
|
|
80
88
|
file "config/anycable.yml", <%= code("anycable.yml") %>
|
81
89
|
```
|
82
90
|
|
83
|
-
The compiled template will
|
91
|
+
The compiled template will look like this:
|
84
92
|
|
85
93
|
```erb
|
86
94
|
cable_adapter = ask? "Which AnyCable pub/sub adapter do you want to use?"
|
@@ -94,7 +102,7 @@ file "config/anycable.yml", ERB.new(
|
|
94
102
|
], trim_mode: "<>").result(binding)
|
95
103
|
```
|
96
104
|
|
97
|
-
**NOTE:** By default, we assume that partials are stored next to the template's
|
105
|
+
**NOTE:** By default, we assume that partials are stored next to the template's entry-point. Partials may have the "_" prefix and ".rb" or ".tt" suffixes.
|
98
106
|
|
99
107
|
### Compiling templates
|
100
108
|
|
@@ -251,7 +259,7 @@ Bug reports and pull requests are welcome on GitHub at [https://github.com/palka
|
|
251
259
|
|
252
260
|
## Credits
|
253
261
|
|
254
|
-
This gem is generated via [
|
262
|
+
This gem is generated via [`newgem` template](https://github.com/palkan/newgem) by [@palkan](https://github.com/palkan).
|
255
263
|
|
256
264
|
## License
|
257
265
|
|
data/lib/ruby_bytes/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rbytes
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Vladimir Dementyev
|
@@ -70,7 +70,8 @@ description: Ruby Bytes is a tool to build application templates for Ruby and Ra
|
|
70
70
|
applications
|
71
71
|
email:
|
72
72
|
- dementiev.vm@gmail.com
|
73
|
-
executables:
|
73
|
+
executables:
|
74
|
+
- rbytes
|
74
75
|
extensions: []
|
75
76
|
extra_rdoc_files: []
|
76
77
|
files:
|