locomotive_plugin_joiner 0.1.3 → 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/VERSION +1 -1
- data/lib/locomotive_plugin_joiner.rb +13 -7
- data/locomotive_plugin_joiner.gemspec +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1a6b80c4133110617ea400901ff7b96332db6aaf
|
4
|
+
data.tar.gz: fa250d74476e4cb1f1ad638135c7245d47c090eb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a899944752ec81e36950e1150129bafadfbcadeebb4a19cd1325f6c84389b93cb11a99fc1e6f61471f72241cadee284878737793fcd9f080fe00cb7b2e7a6f7d
|
7
|
+
data.tar.gz: e7fb50a143bc80f040c467216a198e7a711674012715cb934338fdb5f9261e9d0d515fa0f5029f38736a52721a0d4917a73ddd03e4ede7f4cb2d47ebbd5e7357
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.4
|
@@ -20,14 +20,20 @@ module Filters
|
|
20
20
|
|
21
21
|
end
|
22
22
|
|
23
|
-
|
24
|
-
|
23
|
+
module LocomotivePluginJoiner
|
24
|
+
class LocomotivePluginJoiner
|
25
|
+
include Locomotive::Plugin
|
26
|
+
|
27
|
+
def self.default_plugin_id
|
28
|
+
'joiner'
|
29
|
+
end
|
25
30
|
|
26
|
-
|
27
|
-
|
28
|
-
|
31
|
+
def self.plugin_loaded
|
32
|
+
puts "joiner plugin LOADED :D :D :D"
|
33
|
+
end
|
29
34
|
|
30
|
-
|
31
|
-
|
35
|
+
def self.liquid_filters
|
36
|
+
Filters
|
37
|
+
end
|
32
38
|
end
|
33
39
|
end
|
@@ -2,11 +2,11 @@
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
|
-
# stub: locomotive_plugin_joiner 0.1.
|
5
|
+
# stub: locomotive_plugin_joiner 0.1.4 ruby lib
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
8
|
s.name = "locomotive_plugin_joiner"
|
9
|
-
s.version = "0.1.
|
9
|
+
s.version = "0.1.4"
|
10
10
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
12
12
|
s.require_paths = ["lib"]
|