Skip to content

jgdavey/transit-rails

main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
lib
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

transit-rails

Travis status

Use transit format in your Rails application, with minimal friction.

Works wherever transit-ruby does.

Installation

Add this line to your application's Gemfile:

gem 'transit-rails'

And then execute:

$ bundle

Or install it yourself as:

$ gem install transit-rails

Usage

In a Rails controller:

def index
  @posts = Post.all
  respond_to do |format|
    format.html
    format.transit { render transit: @posts }
  end
end

The renderer can take a verbose flag, which when true will output transit in the json-verbose format.

def index
  @posts = Post.all
  render transit: @posts, verbose: true
end

You can supply any custom handlers using the handlers option.

def index
  @person = Person.new
  render transit: @person, handlers: { Person => PersonHandler.new }
end

Read more about custom handlers on the transit-ruby README.

Contributing

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

About

Use transit format in your Rails application

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •  

Languages