Project

metova

0.01
No commit activity in last 3 years
No release in over 3 years
There's a lot of open issues
Metova libraries for Ruby on Rails
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

>= 3.2.0
~> 0.16.0
~> 4.2.0
 Project Readme

Metova Rails Components Build Status

The Metova gem provides a plethora of functionality for Rails apps.

Installation

Because AMS 0.10.0 is not released to RubyGems, it should be installed separately in your Gemfile instead of being a dependency of metova.

gem 'metova'
gem 'active_model_serializers', github: 'rails-api/active_model_serializers'

Then bundle install.

API Responder

This engine includes a Responder for use with the responders gem. Rails responders are executed when calling respond_with in a controller action. To gain the full effect of these libraries, you should always be using respond_with instead of the "default" Rails respond_to do |format| blocks.

To enable the Responder, add this line to the top of your API base controller:

self.responder = Metova::Responder

Documentation

Please see the Wiki for full documentation!

Contributing

  1. Fork it ( https://github.com/metova/metova-rails/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Add Tests
  4. Commit your changes (git commit -am 'Add some feature')
  5. Push to the branch (git push origin my-new-feature)
  6. Create a new Pull Request