Sha256: 8ab66cc6a0adb3e725de6c907f55399f6094b1504664389dcd2d25a567b0cf7a

Contents?: true

Size: 1.25 KB

Versions: 22

Compression:

Stored size: 1.25 KB

Contents

## MDWA - A MDD Approach for Ruby on Rails

MDWA is a model-driven approach, built by Marcelo Theodoro, to ease the process of develop web applications.
MDD gem includes a set of code generation tools to automate repetitive task during Rails development, such as:

* Sandbox environment: Provides a clean environment with user authentication, namespace separation and more;
* CSS templating: YUI3 grid system and beautiful styling
* Multiple layouts
* Smart scaffold generator

## How to start?

MDD is based on top of Rails 3.1, including asset pipeline feature.
Add it to your Gemfile with:

```ruby
gem 'mdd'
```

Run the bundle command to install it.

After you install MDD and add it to your Gemfile, you need to run the generator:

```console
rails generate mdwa:sandbox
```
This generator will setup the clean sandbox environment with:

* Multiple layouts;
* Assets ready to be customized;
* User based authentication with Devise (https://github.com/plataformatec/devise);
* Login;
* Public pages - for simple website development.

Check the result:

* Public pages: http://localhost:3000
* Private area: http://localhost:3000/a

The private area requires user authentication.
The generator will create a default user:

```console
User: admin@admin.com
Password: admin123
```

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
mdd-3.1.4 README.md
mdd-3.1.2 README.md
mdd-3.1.1 README.md
mdd-3.1.0 README.md
mdd-3.0.20 README.md
mdd-3.0.19 README.md
mdd-3.0.18 README.md
mdd-3.0.17 README.md
mdd-3.0.16 README.md
mdd-3.0.15 README.md
mdd-3.0.14 README.md
mdd-3.0.13 README.md
mdd-3.0.10 README.md
mdd-3.0.9 README.md
mdd-3.0.8 README.md
mdd-3.0.7 README.md
mdd-3.0.6 README.md
mdd-3.0.4 README.md
mdd-3.0.3 README.md
mdd-3.0.2 README.md