Git Product home page Git Product logo

topcat's Introduction

Topcat
======

A slice for the Merb framework.

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

topcat
|-- LICENSE
|-- README
|-- Rakefile [1]
|-- TODO
|-- app [2]
|   |-- controllers
|   |   |-- application.rb
|   |   `-- main.rb
|   |-- helpers
|   |   `-- application_helper.rb
|   `-- views
|       |-- layout
|       |   `-- topcat.html.erb [3]
|       `-- main
|           `-- index.html.erb
|-- lib
|   |-- topcat
|   |   |-- merbtasks.rb [4]
|   |   `-- slicetasks.rb [5]
|   `-- topcat.rb [6]
|-- log
|   `-- merb_test.log
|-- public [7]
|   |-- javascripts 
|   |   `-- master.js
|   `-- stylesheets
|       `-- master.css
|-- spec [8]
|   |-- topcat_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[:topcat][: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:topcat: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:topcat:stubs to
   get started with the override stubs. Also, slices:topcat:patch will
   copy over views to override in addition to the files found in /stubs.
   

To see all available tasks for Topcat run:

rake -T slices:topcat

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

Instructions for installation:

file: config/init.rb

# add the slice as a regular dependency

dependency 'topcat'

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

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

# optionally configure the plugins in a before_app_loads callback

Merb::BootLoader.before_app_loads do
  
  Merb::Slices::config[:topcat][:option] = value
  
end

file: config/router.rb

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

add_slice(:Topcat)

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

add_slice(:Topcat, 'foo') # same as :path => 'foo'

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

add_slice(:Topcat, :path => ':lang', :params => { :a => 'b' })

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

slice(:Topcat)

Normally you should also run the following rake task:

rake slices:topcat:install

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

You can put your application-level overrides in:

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

Templates are located in this order:

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

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

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

By default :topcat 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/topcat.

In any case don't edit those files directly as they may be clobbered any time
rake topcat: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>

topcat's People

Contributors

gma avatar

Stargazers

Angus H. avatar

Watchers

 avatar James Cloos avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.