oasis 0.5.3 → 0.5.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -7,11 +7,8 @@ require "oasis/dependencies"
7
7
  require "oasis/configure"
8
8
  require "oasis/development"
9
9
 
10
- require "oasis/routes" if defined? ActionController::Routing
11
- require "oasis/layout" if defined? ActionController::Layout
12
-
13
10
  module Oasis
14
11
  # an array of all loaded rails engines, that Oasis can know about.
15
12
  mattr_accessor :apps
16
13
  self.apps = Oasis::App::List.new
17
- end
14
+ end
@@ -3,6 +3,8 @@ module Oasis
3
3
  def configure!(config)
4
4
  config.after_initialize do
5
5
  ActiveSupport::Dependencies.extend Oasis::Dependencies
6
+ require "oasis/routes"
7
+ require "oasis/layout"
6
8
  end
7
9
  end
8
10
  end
@@ -1,3 +1,3 @@
1
1
  module Oasis
2
- VERSION = "0.5.3"
3
- end
2
+ VERSION = "0.5.4"
3
+ end
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{oasis}
8
- s.version = "0.5.2"
8
+ s.version = "0.5.4"
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-27}
12
+ s.date = %q{2010-02-12}
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 = [
@@ -26,11 +26,11 @@ Gem::Specification.new do |s|
26
26
  "lib/oasis/app/list.rb",
27
27
  "lib/oasis/app/loader.rb",
28
28
  "lib/oasis/configure.rb",
29
- "lib/oasis/debug.rb",
30
29
  "lib/oasis/dependencies.rb",
31
30
  "lib/oasis/development.rb",
32
31
  "lib/oasis/layout.rb",
33
32
  "lib/oasis/loader.rb",
33
+ "lib/oasis/logger.rb",
34
34
  "lib/oasis/routes.rb",
35
35
  "lib/oasis/version.rb",
36
36
  "oasis.gemspec",
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.3
4
+ version: 0.5.4
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-02-08 00:00:00 -08:00
13
+ date: 2010-02-12 00:00:00 -08:00
14
14
  default_executable:
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency