danwrong-liquid-inheritance 0.1 → 0.1.1
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.
- data/CHANGELOG +1 -0
- data/Rakefile +0 -1
- data/liquid-inheritance.gemspec +1 -4
- metadata +3 -15
data/CHANGELOG
CHANGED
data/Rakefile
CHANGED
|
@@ -5,6 +5,5 @@ Echoe.new("liquid-inheritance") do |p|
|
|
|
5
5
|
p.email = 'dan@danwebb.net'
|
|
6
6
|
p.summary = "Adds Django style template inheritance to Liquid"
|
|
7
7
|
p.url = "http://github.com/danwrong/liquid-inheritance/"
|
|
8
|
-
p.runtime_dependencies = ["liquid >= 1.9.0"]
|
|
9
8
|
p.retain_gemspec = true
|
|
10
9
|
end
|
data/liquid-inheritance.gemspec
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = %q{liquid-inheritance}
|
|
5
|
-
s.version = "0.1"
|
|
5
|
+
s.version = "0.1.1"
|
|
6
6
|
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
|
8
8
|
s.authors = ["Dan Webb"]
|
|
@@ -25,11 +25,8 @@ Gem::Specification.new do |s|
|
|
|
25
25
|
s.specification_version = 2
|
|
26
26
|
|
|
27
27
|
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
28
|
-
s.add_runtime_dependency(%q<liquid>, [">= 0", "= 1.9.0"])
|
|
29
28
|
else
|
|
30
|
-
s.add_dependency(%q<liquid>, [">= 0", "= 1.9.0"])
|
|
31
29
|
end
|
|
32
30
|
else
|
|
33
|
-
s.add_dependency(%q<liquid>, [">= 0", "= 1.9.0"])
|
|
34
31
|
end
|
|
35
32
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: danwrong-liquid-inheritance
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dan Webb
|
|
@@ -11,20 +11,8 @@ cert_chain: []
|
|
|
11
11
|
|
|
12
12
|
date: 2009-04-09 00:00:00 -07:00
|
|
13
13
|
default_executable:
|
|
14
|
-
dependencies:
|
|
15
|
-
|
|
16
|
-
name: liquid
|
|
17
|
-
type: :runtime
|
|
18
|
-
version_requirement:
|
|
19
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
20
|
-
requirements:
|
|
21
|
-
- - ">="
|
|
22
|
-
- !ruby/object:Gem::Version
|
|
23
|
-
version: "0"
|
|
24
|
-
- - "="
|
|
25
|
-
- !ruby/object:Gem::Version
|
|
26
|
-
version: 1.9.0
|
|
27
|
-
version:
|
|
14
|
+
dependencies: []
|
|
15
|
+
|
|
28
16
|
description: Adds Django style template inheritance to Liquid
|
|
29
17
|
email: dan@danwebb.net
|
|
30
18
|
executables: []
|