Sha256: f0428f7c1abf6c4d5fc7f4086a540025667bed438ad603092c83a9c67aff6305
Contents?: true
Size: 1.93 KB
Versions: 1
Compression:
Stored size: 1.93 KB
Contents
# Tasuku [![Gem Version](https://img.shields.io/gem/v/tasuku.svg)](https://rubygems.org/gems/tasuku) [![Build Status](https://img.shields.io/travis/hyperoslo/tasuku.svg)](https://travis-ci.org/hyperoslo/tasuku) [![Dependency Status](https://img.shields.io/gemnasium/hyperoslo/tasuku.svg)](https://gemnasium.com/hyperoslo/tasuku) [![Code Climate](https://img.shields.io/codeclimate/github/hyperoslo/tasuku.svg)](https://codeclimate.com/github/hyperoslo/tasuku) [![Coverage Status](https://img.shields.io/coveralls/hyperoslo/tasuku.svg)](https://coveralls.io/r/hyperoslo/tasuku) ## Installation Add this line to your application's Gemfile: gem 'tasuku' And then execute: $ bundle Or install it yourself as: $ gem install tasuku Install the gem: $ rails generate tasks:install Run the migrations: $ rake db:migrate Then you can change the default configurations: ```ruby # config/routes.rb Rails.application.routes.draw do mount Tasks::Engine, at: '/tasks' end ``` And the method to use in deriving the current user: ```ruby # config/initializers/tasks.rb Tasks.configure do |config| config.author = :current_user end ``` ### Views Tasuku ships with views, but you can copy them to customize things to your liking: ``` $ rails generate tasks:views ``` Tasuku defaults to using your application's layout, so you'll need to prefix your own route helpers with `main_app` so Ruby on Rails knows where to look. ## Usage ... ## Configuration ... ## Contributing 1. Fork it 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 new Pull Request ## Credits Hyper made this. We're a digital communications agency with a passion for good code, and if you're using this library we probably want to hire you. ## License Tasks is available under the MIT license. See the LICENSE file for more info.
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tasuku-0.0.1 | README.md |