0.01
Low commit activity in last 3 years
There's a lot of open issues
No release in over a year
Presenters Gem.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 1.13
~> 0.10
>= 2.0.6
~> 0.8
~> 13.0
~> 3.0
~> 0.9
~> 1.0.1

Runtime

> 0.1, <= 7.0
~> 1.1.1
~> 0.11
~> 3.4
>= 1.4, < 3.0
>= 1.1, < 3.0
~> 1.2018
~> 2.1
 Project Readme

COmmon PResenter Language (COPRL)

alt text

TLDR;

Do you wish you could write a modern user interface in Ruby?

Now you can. Presenters are a Ruby DSL for rendering user interfaces.

  • Presenters are a power washer for building user interfaces
  • Presenters are to HTML/User Interfaces what C is to assembly
  • A presenter generates a Presenter Object Model (POM)
  • A POM fully describes a user interface
  • A POM client can fully render user interface from POM

The semantics are adopted from Material Design.

Why?

Building a user interface should like Ruby itself:

... a focus on simplicity and productivity. It has an elegant syntax that is natural to read and easy to write.

Instead building a user interface has turned into:

How many languages/technologies/frameworks do I need to learn to build a rich user interface/experience?"

A typical web client requires at a minimum the following: HTML, CSS, Javascript, in addition we need Ruby on the server, plus some SQL.
That is 5 technologies/languages. Now lets talk about a new client like an iOS or Android client. If we go native, we can now add Java and Swift to that list. We are up to 7 technologies/languages! We didn't even add any popular extras like coffeescript, haml, sass, and we left out frameworks.

What if you could write all my user interface in Ruby and have it rendered natively in ANY client? The voom-presenters enable that. It is a Ruby DSL that describes a user interface. It generates an intermediate Presenter Object Model (POM). The POM is a declarative user interface that can be rendered by a POM client. The core presenters gem provides a Web client as a fully functional reference implementation.

This concept was initially inspired by the Presenters concepts of Ivar Jacobson as presented by Robert Martin.

Demo

Demo

Or to run locally:

git clone git@github.com:rx/presenters.git
cd presenters/
bundle install
bundle exec rackup

open http://localhost:9292

Note: Demo defaults to Ruby version 2.7.3 in the .ruby-version file. If you want to run a different version -- set RBENV_VERSION to your desired version. For example:

RBENV_VERSION=2.5.5 bundle insatall
RBENV_VERSION=2.5.5 bundle exec rackup```

To see the POM:

open http://localhost:9292/index.pom

Usage

To use it, add this line to your Gemfile:

gem 'voom-presenters', github('rx/presenters'), require: false

Create the file app/presenters/index.pom with the contents:

Voom::Presenters.define(:hello_world) do
  heading 'hello world'
end   

Rails

For rails: Mount the web-client in your rails config/routes.rb

mount ::Voom::Presenters::WebClient::App, at: '/'
# the api is optional
# mount ::Voom::Presenters::Api::App,       at: '/'

Create an initializer config/initializers/presenters.rb with the following:

require 'voom'

Rack

Presenters are rack based. If your framework uses a rack config file add the following:

use Voom::Presenters::WebClient::App
# the api is optional        
# use Voom::Presenters::Api::App

Start your app and goto /hello_world

Use the Demo to get example code to drop into your presetners.

Status

This project is in a released status.

CircleCI License

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/rx/presenters.

License

The gem is available as open source under the terms of the MIT License.

Code of Conduct

Everyone interacting in the Voom::Presenters project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.