merb-slices 0.9.9 → 0.9.10
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/Rakefile
CHANGED
@@ -37,7 +37,7 @@ spec = Gem::Specification.new do |s|
|
|
37
37
|
s.author = GEM_AUTHOR
|
38
38
|
s.email = GEM_EMAIL
|
39
39
|
s.homepage = PROJECT_URL
|
40
|
-
s.add_dependency('merb-core',
|
40
|
+
s.add_dependency('merb-core', ">= #{Merb::VERSION}")
|
41
41
|
s.require_path = 'lib'
|
42
42
|
s.files = %w(LICENSE README Rakefile Generators TODO) + Dir.glob("{lib,spec}/**/*")
|
43
43
|
s.bindir = "bin"
|
@@ -102,7 +102,7 @@ module Merb
|
|
102
102
|
|
103
103
|
def self.extended(klass)
|
104
104
|
klass.send(:include, InstanceMethods)
|
105
|
-
klass.hide_action :slice
|
105
|
+
klass.hide_action :slice if klass.respond_to?(:hide_action)
|
106
106
|
end
|
107
107
|
|
108
108
|
# Use the slice's layout - defaults to underscored identifier.
|
data/lib/merb-slices/module.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: merb-slices
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Fabien Franzen
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2008-10-
|
12
|
+
date: 2008-10-21 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -20,7 +20,7 @@ dependencies:
|
|
20
20
|
requirements:
|
21
21
|
- - ">="
|
22
22
|
- !ruby/object:Gem::Version
|
23
|
-
version: 0.9.
|
23
|
+
version: 0.9.10
|
24
24
|
version:
|
25
25
|
description: Merb-Slices is a Merb plugin for using and creating application 'slices' which help you modularize your application.
|
26
26
|
email: info@fabien.be
|
@@ -210,7 +210,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
210
210
|
requirements: []
|
211
211
|
|
212
212
|
rubyforge_project: merb
|
213
|
-
rubygems_version: 1.
|
213
|
+
rubygems_version: 1.3.0
|
214
214
|
signing_key:
|
215
215
|
specification_version: 2
|
216
216
|
summary: Merb-Slices is a Merb plugin for using and creating application 'slices' which help you modularize your application.
|