hmote 1.5.1 → 1.5.2

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 +6 -12
  3. data/lib/hmote/version.rb +1 -1
  4. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 574d79f437faf44b5337ddfdb727ed3ab7097404
4
- data.tar.gz: b3f511a6f9913a4f62e66a8d673b9a72ec74a597
3
+ metadata.gz: 681e6d2ed849cb5930849bf1a1a2259231fb408d
4
+ data.tar.gz: b57b67bf12dd5e9fd635a654946b4d0e2ecabd06
5
5
  SHA512:
6
- metadata.gz: 7c7b07826c01235d9100c64a1ca0faf8edbdfcb938809ad69168d75b1dab2dbd7c74b88a6e09fe5f507ec4f36092d573829a0c8fdd7aec2a0eccd3b65ee445aa
7
- data.tar.gz: 7eb8fc99e77be61ce15089e2c9b870167406dd38ee05bd694a79bb248327034bd36294c3e93b2eaca92dbccf3a73f41f3b2418a74eb8cee790a7a44bbe9fa881
6
+ metadata.gz: 1a3dbff43808f5529fc9ff21ce491974a6539a7692a2ac73e5877e485fec0f8994a5434652726858edd7d7b153b3f19d26283410cf1ddd55b09c6a81943c1612
7
+ data.tar.gz: 701809588b0350638b5e38b2165f2197a3ce9857af607646d7c1ae7e3a1814cec69d7aa271b895a919d0bf3098721683057005b107aff3d544e621e273a3bab7
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- hmote [![Build Status](https://gitlab.com/frodsan/hmote/badges/master/build.svg)](https://gitlab.com/frodsan/hmote/builds)
1
+ hmote
2
2
  =====
3
3
 
4
4
  Minimal template engine with default escaping.
@@ -43,7 +43,7 @@ template.call
43
43
  # => "your template goes here!"
44
44
  ```
45
45
 
46
- hmote recognizes three tags to evaluate Ruby code: `%`, `{{}}` and `<? ?>`.
46
+ Hmote recognizes three tags to evaluate Ruby code: `%`, `{{}}` and `<? ?>`.
47
47
  The difference between them is that while the `%` and `<? ?>` tags only
48
48
  evaluate the code, the `{{}}` tag also prints the result to the template.
49
49
 
@@ -148,18 +148,13 @@ For example:
148
148
  hmote("foo.mote", a: 1, b: 2)
149
149
  ```
150
150
 
151
- Related projects:
152
- -----------------
153
-
154
- - [hmote-render][hmote-render]: hmote plugin for Cuba.
155
-
156
151
  Contributing
157
152
  ------------
158
153
 
159
154
  Fork the project with:
160
155
 
161
156
  ```
162
- $ git clone git@gitlab.com:frodsan/hmote.git
157
+ $ git clone git@github.com:frodsan/hmote.git
163
158
  ```
164
159
 
165
160
  To install dependencies, use:
@@ -174,7 +169,7 @@ To run the test suite, do:
174
169
  $ rake test
175
170
  ```
176
171
 
177
- For bug reports and pull requests use [GitLab][issues].
172
+ For bug reports and pull requests use [GitHub][issues].
178
173
 
179
174
  License
180
175
  -------
@@ -183,7 +178,6 @@ hmote is released under the [MIT License][mit].
183
178
 
184
179
  [mit]: http://www.opensource.org/licenses/MIT
185
180
  [mote]: https://github.com/soveran/mote
186
- [hache]: https://gitlab.com/frodsan/hache
187
- [hmote-render]: https://github.com/harmoni/hmote-render
188
- [issues]: https://gitlab.com/frodsan/hmote/issues
181
+ [hache]: https://github.com/frodsan/hache
182
+ [issues]: https://github.com/frodsan/hmote/issues
189
183
  [xss]: http://en.wikipedia.org/wiki/Cross-Site_Scripting
data/lib/hmote/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class HMote
4
- VERSION = "1.5.1"
4
+ VERSION = "1.5.2"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hmote
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.1
4
+ version: 1.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Francesco Rodríguez
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-04-08 00:00:00.000000000 Z
11
+ date: 2016-05-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: hache
@@ -93,7 +93,7 @@ files:
93
93
  - test/helper.rb
94
94
  - test/helpers_test.rb
95
95
  - test/parsing_test.rb
96
- homepage: https://gitlab.com/frodsan/hmote
96
+ homepage: https://github.com/frodsan/hmote
97
97
  licenses:
98
98
  - MIT
99
99
  metadata: {}