Skip to content

Commit

Permalink
initial checkin of merb_screw_unit plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
wycats committed Jul 2, 2008
1 parent f0732a2 commit 7bcc14f
Show file tree
Hide file tree
Showing 27 changed files with 4,816 additions and 0 deletions.
20 changes: 20 additions & 0 deletions merb_screw_unit/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
Copyright (c) 2008 YOUR NAME

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
170 changes: 170 additions & 0 deletions merb_screw_unit/README
Original file line number Diff line number Diff line change
@@ -0,0 +1,170 @@
MerbScrewUnit
=============

A slice for the Merb framework.

------------------------------------------------------------------------------

merb_screw_unit
|-- LICENSE
|-- README
|-- Rakefile [1]
|-- TODO
|-- app [2]
| |-- controllers
| | |-- application.rb
| | `-- main.rb
| |-- helpers
| | `-- application_helper.rb
| `-- views
| |-- layout
| | `-- merb_screw_unit.html.erb [3]
| `-- main
| `-- index.html.erb
|-- lib
| |-- merb_screw_unit
| | |-- merbtasks.rb [4]
| | `-- slicetasks.rb [5]
| `-- merb_screw_unit.rb [6]
|-- log
| `-- merb_test.log
|-- public [7]
| |-- javascripts
| | `-- master.js
| `-- stylesheets
| `-- master.css
|-- spec [8]
| |-- merb_screw_unit_spec.rb
| |-- controllers
| | `-- main_spec.rb
| `-- spec_helper.rb
`-- stubs [9]
`-- app
`-- controllers
|-- application.rb
`-- main.rb


1. Rake tasks to package/install the gem - edit this to modify the manifest.
2. The slice application: controllers, models, helpers, views.
3. The default layout, as specified in Merb::Slices::config[:merb_screw_unit][:layout]
change this to :application to use the app's layout.
4. Standard rake tasks available to your application.
5. Your custom application rake tasks.
6. The main slice file - contains all slice setup logic/config.
7. Public assets you (optionally) install using rake slices:merb_screw_unit:install
8. Specs for basis slice behaviour - you usually adapt these for your slice.
9. Stubs of classes/views/files for the end-user to override - usually these
mimic the files in app/ and/or public/; use rake slices:merb_screw_unit:stubs to
get started with the override stubs. Also, slices:merb_screw_unit:patch will
copy over views to override in addition to the files found in /stubs.


To see all available tasks for MerbScrewUnit run:

rake -T slices:merb_screw_unit

------------------------------------------------------------------------------

Instructions for installation:

file: config/init.rb

# add the slice as a regular dependency

dependency 'merb_screw_unit'

# if needed, configure which slices to load and in which order

Merb::Plugins.config[:merb_slices] = { :queue => ["MerbScrewUnit", ...] }

# optionally configure the plugins in a before_app_loads callback

Merb::BootLoader.before_app_loads do

Merb::Slices::config[:merb_screw_unit][:option] = value

end

file: config/router.rb

# example: /merb_screw_unit/:controller/:action/:id

r.add_slice(:MerbScrewUnit)

# example: /foo/:controller/:action/:id

r.add_slice(:MerbScrewUnit, 'foo') # same as :path => 'foo'

# example: /:lang/:controller/:action/:id (with :a param set)

r.add_slice(:MerbScrewUnit, :path => ':lang', :params => { :a => 'b' })

# example: /:controller/:action/:id

r.slice(:MerbScrewUnit)

Normally you should also run the following rake task:

rake slices:merb_screw_unit:install

------------------------------------------------------------------------------

You can put your application-level overrides in:

host-app/slices/merb_screw_unit/app - controllers, models, views ...

Templates are located in this order:

1. host-app/slices/merb_screw_unit/app/views/*
2. gems/merb_screw_unit/app/views/*
3. host-app/app/views/*

You can use the host application's layout by configuring the
merb_screw_unit slice in a before_app_loads block:

Merb::Slices.config[:merb_screw_unit] = { :layout => :application }

By default :merb_screw_unit is used. If you need to override
stylesheets or javascripts, just specify your own files in your layout
instead/in addition to the ones supplied (if any) in
host-app/public/slices/merb_screw_unit.

In any case don't edit those files directly as they may be clobbered any time
rake merb_screw_unit:install is run.

------------------------------------------------------------------------------

About Slices
============

Merb-Slices is a Merb plugin for using and creating application 'slices' which
help you modularize your application. Usually these are reuseable extractions
from your main app. In effect, a Slice is just like a regular Merb MVC
application, both in functionality as well as in structure.

When you generate a Slice stub structure, a module is setup to serve as a
namespace for your controller, models, helpers etc. This ensures maximum
encapsulation. You could say a Slice is a mixture between a Merb plugin (a
Gem) and a Merb application, reaping the benefits of both.

A host application can 'mount' a Slice inside the router, which means you have
full over control how it integrates. By default a Slice's routes are prefixed
by its name (a router :namespace), but you can easily provide your own prefix
or leave it out, mounting it at the root of your url-schema. You can even
mount a Slice multiple times and give extra parameters to customize an
instance's behaviour.

A Slice's Application controller uses controller_for_slice to setup slice
specific behaviour, which mainly affects cascaded view handling. Additionaly,
this method is available to any kind of controller, so it can be used for
Merb Mailer too for example.

There are many ways which let you customize a Slice's functionality and
appearance without ever touching the Gem-level code itself. It's not only easy
to add template/layout overrides, you can also add/modify controllers, models
and other runtime code from within the host application.

To create your own Slice run this (somewhere outside of your merb app):

$ merb-gen slice <your-lowercase-slice-name>
48 changes: 48 additions & 0 deletions merb_screw_unit/Rakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
require 'rubygems'
require 'rake/gempackagetask'
require 'spec/rake/spectask'
require 'merb-core/version'
require 'merb-core/test/tasks/spectasks'
require 'merb-core/tasks/merb_rake_helper'

NAME = "merb_screw_unit"
AUTHOR = "Yehuda Katz"
EMAIL = "[email protected]"
HOMEPAGE = "http://merbivore.com/"
SUMMARY = "Merb Slice that provides support for Screw.Unit testing"
GEM_VERSION = "0.9.4"

spec = Gem::Specification.new do |s|
s.rubyforge_project = 'merb'
s.name = NAME
s.version = GEM_VERSION
s.platform = Gem::Platform::RUBY
s.has_rdoc = true
s.extra_rdoc_files = ["README", "LICENSE", 'TODO']
s.summary = SUMMARY
s.description = s.summary
s.author = AUTHOR
s.email = EMAIL
s.homepage = HOMEPAGE
s.add_dependency('merb-slices', '>= 0.9.4')
s.require_path = 'lib'
s.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib,spec,app,public,stubs}/**/*")
end

Rake::GemPackageTask.new(spec) do |pkg|
pkg.gem_spec = spec
end

desc "Install MerbScrewUnit as a gem"
task :install => [:package] do
sh %{#{sudo} gem install pkg/#{NAME}-#{GEM_VERSION} --no-update-sources}
end

namespace :jruby do

desc "Run :package and install the resulting .gem with jruby"
task :install => :package do
sh %{#{sudo} jruby -S gem install #{install_home} pkg/#{NAME}-#{GEM_VERSION}.gem --no-rdoc --no-ri}
end

end
15 changes: 15 additions & 0 deletions merb_screw_unit/TODO
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
TODO:

- Fix MerbScrewUnit.description and MerbScrewUnit.version
- Fix LICENSE with your name
- Fix Rakefile with your name and contact info
- Add your code to lib/merb_screw_unit.rb
- Add your Merb rake tasks to lib/merb_screw_unit/merbtasks.rb

Remove anything that you don't need:

- app/controllers/main.rb MerbScrewUnit::Main controller
- app/views/layout/merb_screw_unit.html.erb
- spec/controllers/main_spec.rb controller specs
- public/* any public files
- stubs/* any stub files
5 changes: 5 additions & 0 deletions merb_screw_unit/app/controllers/application.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class MerbScrewUnit::Application < Merb::Controller

controller_for_slice

end
7 changes: 7 additions & 0 deletions merb_screw_unit/app/controllers/main.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
class MerbScrewUnit::Main < MerbScrewUnit::Application

def index
render
end

end
76 changes: 76 additions & 0 deletions merb_screw_unit/app/helpers/application_helper.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
module Merb
module MerbScrewUnit
module ApplicationHelper

# @param *segments<Array[#to_s]> Path segments to append.
#
# @return <String>
# A path relative to the public directory, with added segments.
def image_path(*segments)
public_path_for(:image, *segments)
end

# @param *segments<Array[#to_s]> Path segments to append.
#
# @return <String>
# A path relative to the public directory, with added segments.
def javascript_path(*segments)
public_path_for(:javascript, *segments)
end

def js_include_tag(*files)
files.map do |file|
super(javascript_path(file))
end.join
end

# @param *segments<Array[#to_s]> Path segments to append.
#
# @return <String>
# A path relative to the public directory, with added segments.
def stylesheet_path(*segments)
public_path_for(:stylesheet, *segments)
end

def css_include_tag(*files)
files.map do |file|
super(stylesheet_path(file))
end.join
end

# Construct a path relative to the public directory
#
# @param <Symbol> The type of component.
# @param *segments<Array[#to_s]> Path segments to append.
#
# @return <String>
# A path relative to the public directory, with added segments.
def public_path_for(type, *segments)
::MerbScrewUnit.public_path_for(type, *segments)
end

# Construct an app-level path.
#
# @param <Symbol> The type of component.
# @param *segments<Array[#to_s]> Path segments to append.
#
# @return <String>
# A path within the host application, with added segments.
def app_path_for(type, *segments)
::MerbScrewUnit.app_path_for(type, *segments)
end

# Construct a slice-level path.
#
# @param <Symbol> The type of component.
# @param *segments<Array[#to_s]> Path segments to append.
#
# @return <String>
# A path within the slice source (Gem), with added segments.
def slice_path_for(type, *segments)
::MerbScrewUnit.slice_path_for(type, *segments)
end

end
end
end
Loading

0 comments on commit 7bcc14f

Please sign in to comment.