cells-hamlit 0.1.1 → 0.2.0
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 +4 -4
- data/CHANGES.md +4 -0
- data/README.md +9 -3
- data/cells-hamlit.gemspec +0 -1
- data/lib/cell/hamlit.rb +0 -1
- data/lib/cell/hamlit/version.rb +1 -1
- metadata +4 -17
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 98b0b66b8122c06d1ba01d0a54fc1c780a2a04e2
|
4
|
+
data.tar.gz: 8d3854d5581691b95653d87f690dfb11223798c4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b1682fafa4228ec0c5f8ca62dd7d61a1846732f08d86b50010cfcda92f42db68f708fc3627336d4b39f6cfe5ce77c3e72ddb849c93adeb883424f2a75984a991
|
7
|
+
data.tar.gz: c2c27c837049407ddfdd9c4083a9589d238dd550e0ea527b3b314abd4319758bc10c2d8f04546efef60f6d9ac883dc1e57eb654cc4c019d7f7a1eff735f3122d
|
data/CHANGES.md
CHANGED
data/README.md
CHANGED
@@ -9,11 +9,17 @@ Add this line to your application's Gemfile:
|
|
9
9
|
|
10
10
|
```ruby
|
11
11
|
gem "cells-hamlit"
|
12
|
-
gem "hamlit"
|
13
|
-
gem "hamlit-block"
|
14
12
|
```
|
15
13
|
|
16
|
-
Note that you need [hamlit-block](https://github.com/
|
14
|
+
Note that you need [hamlit-block](https://github.com/hamlit/hamlit-block), too, for `capture` support.
|
15
|
+
This will slightly change semantics with blocks, as follows. # TODO
|
16
|
+
|
17
|
+
Add this lines to your application's Gemfile:
|
18
|
+
|
19
|
+
```ruby
|
20
|
+
gem "cells-hamlit"
|
21
|
+
gem "hamlit-block"
|
22
|
+
```
|
17
23
|
|
18
24
|
## Capture
|
19
25
|
|
data/cells-hamlit.gemspec
CHANGED
data/lib/cell/hamlit.rb
CHANGED
data/lib/cell/hamlit/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cells-hamlit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nick Sutterer
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2016-
|
12
|
+
date: 2016-03-10 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: cells
|
@@ -39,20 +39,6 @@ dependencies:
|
|
39
39
|
- - ">="
|
40
40
|
- !ruby/object:Gem::Version
|
41
41
|
version: '0'
|
42
|
-
- !ruby/object:Gem::Dependency
|
43
|
-
name: hamlit-block
|
44
|
-
requirement: !ruby/object:Gem::Requirement
|
45
|
-
requirements:
|
46
|
-
- - "~>"
|
47
|
-
- !ruby/object:Gem::Version
|
48
|
-
version: 0.3.0
|
49
|
-
type: :runtime
|
50
|
-
prerelease: false
|
51
|
-
version_requirements: !ruby/object:Gem::Requirement
|
52
|
-
requirements:
|
53
|
-
- - "~>"
|
54
|
-
- !ruby/object:Gem::Version
|
55
|
-
version: 0.3.0
|
56
42
|
- !ruby/object:Gem::Dependency
|
57
43
|
name: bundler
|
58
44
|
requirement: !ruby/object:Gem::Requirement
|
@@ -145,7 +131,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
145
131
|
version: '0'
|
146
132
|
requirements: []
|
147
133
|
rubyforge_project:
|
148
|
-
rubygems_version: 2.
|
134
|
+
rubygems_version: 2.5.1
|
149
135
|
signing_key:
|
150
136
|
specification_version: 4
|
151
137
|
summary: Hamlit integration for Cells
|
@@ -170,3 +156,4 @@ test_files:
|
|
170
156
|
- test/dummy/config/routes.rb
|
171
157
|
- test/hamlit_test.rb
|
172
158
|
- test/test_helper.rb
|
159
|
+
has_rdoc:
|