All Versions
12
Latest Version
Avg Release Cycle
121 days
Latest Release
2345 days ago

Changelog History
Page 2

  • v0.0.11

    October 30, 2013
  • v0.0.9 Changes

    ➕ Adding support for non-monthly plans. The default is still monthly. To accommodate this, a interval attribute has been added to the Plan class. ⬆️ To upgrade earlier installations, you can run the following commands:

    $ rails g migration add_interval_to_plan interval:string
    $ rake db:migrate
    

    You'll also need to make this attribute mass-assignable:

    class Plan < ActiveRecord::Base
      include Koudoku::Plan
      attr_accessible :interval
    end