0.0
No release in over 3 years
Low commit activity in last 3 years
Integrate Unpoly with Roda
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 5.0
~> 0.6
~> 10.0

Runtime

< 4.0, >= 2.0
 Project Readme

Unpoly for Roda

Easily add support for the server protocol expected by Unpoly.

Installation

Add this line to your application's Gemfile:

gem "roda-unpoly"

And then execute:

$ bundle

Or install it yourself as:

$ gem install roda-unpoly

Usage

Simply enable the plugin through the plugin mechanism.

class App < Roda
  plugin :unpoly

  route do |r|
    # Routing tree
  end
end

Inside the routing tree, some convenience methods are made available to work with the Unpoly request.

Testing for Unpoly request

Use the methods r.up?, r.unpoly?, r.up.up?, or r.up.unpoly? (they are all aliases of the same method).

Testing the Unpoly target

Use the method r.up.target?(your_target).

Testing for Unpoly validate request

Use the method r.up.validate?.

Setting page title

Use the method r.up.title=.

Where are the Javascript and CSS assets?

I've chosen not to bundle those assets with the gem as they might be updated more frequently then this library. Roda is also asset-agnostic (for the most part), so it's easier if you bring in your assets as you see fit for your specific needs.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/adam12/roda-unpoly.

I love pull requests! If you fork this project and modify it, please ping me to see if your changes can be incorporated back into this project.

That said, if your feature idea is nontrivial, you should probably open an issue to discuss it before attempting a pull request.

License

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