oasis 0.5.1 → 0.5.2
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/lib/oasis/routes.rb +1 -1
- data/lib/oasis/version.rb +1 -1
- data/oasis.gemspec +3 -2
- metadata +2 -2
data/lib/oasis/routes.rb
CHANGED
|
@@ -22,7 +22,7 @@ module Oasis
|
|
|
22
22
|
raise ActionController::RoutingError, "app: #{name} not registered" unless Oasis::Routes.apps[name]
|
|
23
23
|
|
|
24
24
|
args = args.extract_options!
|
|
25
|
-
args[:name_prefix]
|
|
25
|
+
args[:name_prefix] ||= "#{name}_"
|
|
26
26
|
|
|
27
27
|
with_options(args, &Oasis::Routes.apps[name])
|
|
28
28
|
Oasis::Routes.apps[name] = false
|
data/lib/oasis/version.rb
CHANGED
data/oasis.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{oasis}
|
|
8
|
-
s.version = "0.5.
|
|
8
|
+
s.version = "0.5.2"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Derek Perez", "Chris Eppstein"]
|
|
12
|
-
s.date = %q{2010-01-
|
|
12
|
+
s.date = %q{2010-01-27}
|
|
13
13
|
s.description = %q{a collection of enhancements for rails engines. Designed to work with Rails 2.3.}
|
|
14
14
|
s.email = %q{derek@derekperez.com}
|
|
15
15
|
s.extra_rdoc_files = [
|
|
@@ -25,6 +25,7 @@ Gem::Specification.new do |s|
|
|
|
25
25
|
"lib/oasis.rb",
|
|
26
26
|
"lib/oasis/app/list.rb",
|
|
27
27
|
"lib/oasis/app/loader.rb",
|
|
28
|
+
"lib/oasis/configure.rb",
|
|
28
29
|
"lib/oasis/debug.rb",
|
|
29
30
|
"lib/oasis/dependencies.rb",
|
|
30
31
|
"lib/oasis/development.rb",
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: oasis
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Derek Perez
|
|
@@ -10,7 +10,7 @@ autorequire:
|
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
12
|
|
|
13
|
-
date: 2010-01-
|
|
13
|
+
date: 2010-01-27 00:00:00 -08:00
|
|
14
14
|
default_executable:
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|