Skip to content

tubbo/hibachi

Repository files navigation

Hibachi

Build Status Code Climate Test Coverage Inline docs

An object-resource mapper for your Chef server. Enables a Rails app to manipulate its own Chef node attributes and trigger a chef-client run on its local machine, as well as any others your client has access to.

Installation

Add this line to your application's Gemfile:

gem 'hibachi'

And then execute:

$ bundle

Usage

Generate a new model with the following command:

$ rails generate hibachi:model network_interface name is_static:boolean address netmask gateway --plural

This will generate the following model and an accompanying test:

class NetworkInterface < Hibachi::Model
  pluralized!

  field :name, type: String
  field :is_static, type: Boolean
  field :address, type: String
  field :netmask, type: String
  field :gateway, type: String
end

To learn more about how to use Hibachi, visit the Wiki

Development

You can run bin/setup to install all dependencies in one go, and bin/console for an interactive console prompt. We also provide rake and rspec commands for running regular shell tasks.

Running Tests

To run tests and check against the Ruby style guide:

$ rake

Releasing

To release a new version of this gem, bump the version number in lib/hibachi/version.rb and run the following command to push a Git tag to the server. Travis will handle deploying the gem to RubyGems on new successful tag builds:

$ rake publish

Contributing

A passing build is required for any contributions made to this project. We also prefer you write tests for any new features you wish to add and use the test framework to highlight how and why bug fixes had to occur.

  1. Fork it ( https://github.com/tubbo/hibachi/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