Oasis 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.
@@ -0,0 +1,5 @@
1
+ README.rdoc
2
+ lib/**/*.rb
3
+ bin/*
4
+ features/**/*.feature
5
+ LICENSE
@@ -0,0 +1,21 @@
1
+ ## MAC OS
2
+ .DS_Store
3
+
4
+ ## TEXTMATE
5
+ *.tmproj
6
+ tmtags
7
+
8
+ ## EMACS
9
+ *~
10
+ \#*
11
+ .\#*
12
+
13
+ ## VIM
14
+ *.swp
15
+
16
+ ## PROJECT::GENERAL
17
+ coverage
18
+ rdoc
19
+ pkg
20
+
21
+ ## PROJECT::SPECIFIC
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2009 Derek Perez
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,17 @@
1
+ = oasis
2
+
3
+ Description goes here.
4
+
5
+ == Note on Patches/Pull Requests
6
+
7
+ * Fork the project.
8
+ * Make your feature addition or bug fix.
9
+ * Add tests for it. This is important so I don't break it in a
10
+ future version unintentionally.
11
+ * Commit, do not mess with rakefile, version, or history.
12
+ (if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
13
+ * Send me a pull request. Bonus points for topic branches.
14
+
15
+ == Copyright
16
+
17
+ Copyright (c) 2009 Derek Perez. See LICENSE for details.
@@ -0,0 +1,53 @@
1
+ require 'rubygems'
2
+ require 'rake'
3
+
4
+ begin
5
+ require 'jeweler'
6
+ Jeweler::Tasks.new do |gem|
7
+ gem.name = "Oasis"
8
+ gem.summary = %Q{a collection of enhancements for rails engines.}
9
+ gem.description = %Q{a collection of enhancements for rails engines. Designed to work with Rails 2.3.}
10
+ gem.email = "derek@derekperez.com"
11
+ gem.homepage = "http://github.com/perezd/oasis"
12
+ gem.authors = ["Derek Perez", "Chris Eppstein"]
13
+ gem.add_development_dependency "shoulda", ">= 2.10.2"
14
+ # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
15
+ end
16
+ Jeweler::GemcutterTasks.new
17
+ rescue LoadError
18
+ puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
19
+ end
20
+
21
+ require 'rake/testtask'
22
+ Rake::TestTask.new(:test) do |test|
23
+ test.libs << 'lib' << 'test'
24
+ test.pattern = 'test/**/test_*.rb'
25
+ test.verbose = true
26
+ end
27
+
28
+ begin
29
+ require 'rcov/rcovtask'
30
+ Rcov::RcovTask.new do |test|
31
+ test.libs << 'test'
32
+ test.pattern = 'test/**/test_*.rb'
33
+ test.verbose = true
34
+ end
35
+ rescue LoadError
36
+ task :rcov do
37
+ abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
38
+ end
39
+ end
40
+
41
+ task :test => :check_dependencies
42
+
43
+ task :default => :test
44
+
45
+ require 'rake/rdoctask'
46
+ Rake::RDocTask.new do |rdoc|
47
+ version = File.exist?('VERSION') ? File.read('VERSION') : ""
48
+
49
+ rdoc.rdoc_dir = 'rdoc'
50
+ rdoc.title = "oasis #{version}"
51
+ rdoc.rdoc_files.include('README*')
52
+ rdoc.rdoc_files.include('lib/**/*.rb')
53
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.1.1
@@ -0,0 +1,3 @@
1
+ path = File.dirname(__FILE__)
2
+ require "#{path}/oasis/debug"
3
+ require "#{path}/oasis/routes"
@@ -0,0 +1,11 @@
1
+ module Oasis
2
+ class Debug
3
+ def self.log(msg)
4
+ if defined? RAILS_DEFAULT_LOGGER
5
+ RAILS_DEFAULT_LOGGER.debug "** [OASIS] : #{msg}"
6
+ else
7
+ puts "** [OASIS] : #{msg}"
8
+ end
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,33 @@
1
+ module Oasis
2
+
3
+ # This class is harnessed by plugins/apps/engines to define and
4
+ # freeze a route grouping it wishes to define.
5
+ class Routes
6
+ cattr_accessor :apps
7
+ def self.routing_for(name, &blk)
8
+ self.apps[name] = blk
9
+ Debug.log "loaded routes for app: #{name}"
10
+ end
11
+
12
+ def self.reset!
13
+ self.apps = {}
14
+ end
15
+ end
16
+
17
+ # this gets mixed into the standard ActionController RouteSet Mapper
18
+ # and provides the API to the mapper.
19
+ module RouteSet
20
+ def routing_for(name,*args)
21
+ raise ActionController::RoutingError, "#{name} routing collection has already been used once." if Oasis::Routes.apps[name] == false
22
+ raise ActionController::RoutingError, "app: #{name} not registered" unless Oasis::Routes.apps[name]
23
+ with_options(args.extract_options!, &Oasis::Routes.apps[name])
24
+ Oasis::Routes.apps[name] = false
25
+ end
26
+ end
27
+ end
28
+
29
+ # mixin, and empty the container.
30
+ Oasis::Routes.apps = {} if Oasis::Routes.apps.nil?
31
+ class ActionController::Routing::RouteSet::Mapper
32
+ include Oasis::RouteSet
33
+ end
@@ -0,0 +1,56 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{Oasis}
8
+ s.version = "0.1.1"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Derek Perez", "Chris Eppstein"]
12
+ s.date = %q{2009-12-19}
13
+ s.description = %q{a collection of enhancements for rails engines. Designed to work with Rails 2.3.}
14
+ s.email = %q{derek@derekperez.com}
15
+ s.extra_rdoc_files = [
16
+ "LICENSE",
17
+ "README.rdoc"
18
+ ]
19
+ s.files = [
20
+ ".document",
21
+ ".gitignore",
22
+ "LICENSE",
23
+ "README.rdoc",
24
+ "Rakefile",
25
+ "VERSION",
26
+ "lib/oasis.rb",
27
+ "lib/oasis/debug.rb",
28
+ "lib/oasis/routes.rb",
29
+ "oasis.gemspec",
30
+ "test/helper.rb",
31
+ "test/test_oasis_routing.rb"
32
+ ]
33
+ s.homepage = %q{http://github.com/perezd/oasis}
34
+ s.rdoc_options = ["--charset=UTF-8"]
35
+ s.require_paths = ["lib"]
36
+ s.rubygems_version = %q{1.3.5}
37
+ s.summary = %q{a collection of enhancements for rails engines.}
38
+ s.test_files = [
39
+ "test/helper.rb",
40
+ "test/test_oasis_routing.rb"
41
+ ]
42
+
43
+ if s.respond_to? :specification_version then
44
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
45
+ s.specification_version = 3
46
+
47
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
48
+ s.add_development_dependency(%q<shoulda>, [">= 2.10.2"])
49
+ else
50
+ s.add_dependency(%q<shoulda>, [">= 2.10.2"])
51
+ end
52
+ else
53
+ s.add_dependency(%q<shoulda>, [">= 2.10.2"])
54
+ end
55
+ end
56
+
@@ -0,0 +1,22 @@
1
+ require 'rubygems'
2
+ require 'test/unit'
3
+ require 'shoulda'
4
+ require 'active_support'
5
+ require 'action_controller'
6
+ require 'redgreen' rescue nil
7
+
8
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
9
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
10
+ require 'oasis'
11
+
12
+ # silence the logger, or define a new path for logging.
13
+ module Oasis
14
+ class Debug
15
+ def self.log(*args)
16
+ nil
17
+ end
18
+ end
19
+ end
20
+
21
+ class Test::Unit::TestCase
22
+ end
@@ -0,0 +1,69 @@
1
+ require 'helper'
2
+
3
+ class TestOasisRouting < Test::Unit::TestCase
4
+
5
+ ROUTING = ActionController::Routing
6
+
7
+ def setup
8
+ Oasis::Routes.routing_for(:customers) do |customers|
9
+ customers.connect "/customers", :controller => "customers"
10
+ customers.connect "/cool-stuff", :controller => "customers"
11
+ end
12
+ end
13
+
14
+ should "define a named routing set" do
15
+ assert Oasis::Routes.apps.has_key?(:customers)
16
+ assert Oasis::Routes.apps[:customers].is_a?(Proc)
17
+ end
18
+
19
+ should "consume a named routing set" do
20
+ set.draw do |map|
21
+ map.connect "/before", :controller => "bef"
22
+ map.routing_for(:customers)
23
+ map.connect "/after", :controller => "foo"
24
+ end
25
+
26
+ assert set.recognize_path "/before"
27
+ assert set.recognize_path "/customers"
28
+ assert set.recognize_path "/cool-stuff"
29
+ assert set.recognize_path "/after"
30
+ end
31
+
32
+ should "consume a named routing set within a namespace" do
33
+ set.draw do |map|
34
+ map.namespace "foobar" do |foo|
35
+ foo.routing_for(:customers)
36
+ end
37
+ end
38
+
39
+ assert set.recognize_path "/foobar/customers"
40
+ assert set.recognize_path "/foobar/cool-stuff"
41
+ end
42
+
43
+ should "fail if named routing set does not exist" do
44
+ set.draw do |map|
45
+ assert_raise ActionController::RoutingError do
46
+ map.routing_for(:fake_routing_set)
47
+ end
48
+ end
49
+ end
50
+
51
+ should "fail if named routing set is consumed more than once" do
52
+ set.draw do |map|
53
+ map.routing_for(:customers)
54
+ assert_raise ActionController::RoutingError do
55
+ map.routing_for(:customers)
56
+ end
57
+ end
58
+ end
59
+
60
+ def set
61
+ @set ||= ROUTING::RouteSet.new
62
+ end
63
+
64
+ def teardown
65
+ set.clear!
66
+ Oasis::Routes.reset!
67
+ end
68
+
69
+ end
metadata ADDED
@@ -0,0 +1,78 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: Oasis
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - Derek Perez
8
+ - Chris Eppstein
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+
13
+ date: 2009-12-19 00:00:00 -08:00
14
+ default_executable:
15
+ dependencies:
16
+ - !ruby/object:Gem::Dependency
17
+ name: shoulda
18
+ type: :development
19
+ version_requirement:
20
+ version_requirements: !ruby/object:Gem::Requirement
21
+ requirements:
22
+ - - ">="
23
+ - !ruby/object:Gem::Version
24
+ version: 2.10.2
25
+ version:
26
+ description: a collection of enhancements for rails engines. Designed to work with Rails 2.3.
27
+ email: derek@derekperez.com
28
+ executables: []
29
+
30
+ extensions: []
31
+
32
+ extra_rdoc_files:
33
+ - LICENSE
34
+ - README.rdoc
35
+ files:
36
+ - .document
37
+ - .gitignore
38
+ - LICENSE
39
+ - README.rdoc
40
+ - Rakefile
41
+ - VERSION
42
+ - lib/oasis.rb
43
+ - lib/oasis/debug.rb
44
+ - lib/oasis/routes.rb
45
+ - oasis.gemspec
46
+ - test/helper.rb
47
+ - test/test_oasis_routing.rb
48
+ has_rdoc: true
49
+ homepage: http://github.com/perezd/oasis
50
+ licenses: []
51
+
52
+ post_install_message:
53
+ rdoc_options:
54
+ - --charset=UTF-8
55
+ require_paths:
56
+ - lib
57
+ required_ruby_version: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: "0"
62
+ version:
63
+ required_rubygems_version: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - ">="
66
+ - !ruby/object:Gem::Version
67
+ version: "0"
68
+ version:
69
+ requirements: []
70
+
71
+ rubyforge_project:
72
+ rubygems_version: 1.3.5
73
+ signing_key:
74
+ specification_version: 3
75
+ summary: a collection of enhancements for rails engines.
76
+ test_files:
77
+ - test/helper.rb
78
+ - test/test_oasis_routing.rb