inline_partial 0.1.2 → 0.1.4
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/CHANGELOG.md +8 -0
- data/README.md +14 -2
- data/lib/inline_partial/helper.rb +1 -1
- data/lib/inline_partial/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: af2b6dfa46241060613e75a10a13a38070628b54ba8395c0368a30863af02a68
|
4
|
+
data.tar.gz: e0d0e82c67310aff1003147694650b5406baf168d5a292bc1d5100828c2e4c86
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7855faa0c93cb34dd217f9a0a0b228ab49fb58c9cd537ec0bf473555bff33c5a47a2e5a7b04d5bde8e8c9318c253abf321a6a910a70c006c985e58b16dfa51db
|
7
|
+
data.tar.gz: e1cc0038f797e1e9cc5054b53fb06fab0ad908ff37c52e38a90d27c1b2171008ae5672b65b7270106c47d0d1b690438fde14223c8c236815e44c798c2ea649a8
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,14 @@
|
|
2
2
|
|
3
3
|
- No changes yet.
|
4
4
|
|
5
|
+
## [0.1.4] - 2025-06-29
|
6
|
+
|
7
|
+
- Update installation instructions in README to clarify Gemfile usage
|
8
|
+
|
9
|
+
## [0.1.3] - 2025-06-28
|
10
|
+
|
11
|
+
- Remove default value for inline_partial name parameter
|
12
|
+
|
5
13
|
## [0.1.2] - 2025-06-28
|
6
14
|
|
7
15
|
- Update README to emphasize that partial templates can be defined with **any name**
|
data/README.md
CHANGED
@@ -4,9 +4,21 @@
|
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
7
|
+
Add the following line to your `Gemfile`:
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
gem "inline_partial"
|
11
|
+
```
|
12
|
+
|
13
|
+
Then run:
|
14
|
+
|
15
|
+
```bash
|
16
|
+
bundle install
|
17
|
+
```
|
18
|
+
|
19
|
+
Or, you can add it directly with:
|
20
|
+
|
7
21
|
```bash
|
8
|
-
gem install inline_partial
|
9
|
-
# or in Gemfile
|
10
22
|
bundle add inline_partial
|
11
23
|
```
|
12
24
|
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: inline_partial
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- lef237
|
8
8
|
bindir: exe
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-06-
|
10
|
+
date: 2025-06-29 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: rails
|