README.markdown in plutus-0.13 vs README.markdown in plutus-0.14
- old
+ new
@@ -1,8 +1,8 @@
Plutus
=================
-[![Build Status](https://secure.travis-ci.org/mbulat/plutus.png?branch=master)](http://travis-ci.org/mbulat/plutus)
+[![Build Status](https://travis-ci.org/mbulat/plutus.svg?branch=master)](https://travis-ci.org/mbulat/plutus) [![Coverage Status](https://coveralls.io/repos/github/mbulat/plutus/badge.svg?branch=master)](https://coveralls.io/github/mbulat/plutus?branch=master)
The Plutus plugin is a Ruby on Rails Engine which provides a double entry accounting system for your application.
Compatibility
=============
@@ -14,13 +14,11 @@
Installation
============
- Add the gem to your Gemfile `gem "plutus"`
-
-- generate migration files `rails g plutus`
-
+- generate migration files `rake plutus:install:migrations`
- run migrations `rake db:migrate`
Overview
========
@@ -292,12 +290,12 @@
end
```
*NOTE: When building entries, be sure to specify the account directly, rather than use the `account_name` feature. Otherwise you'll probably end up with the wrong account.*
```ruby
-debit_account = Plutus::Acount.where(:name => "Cash", :tenant => my_tenant).last
-credit_account = Plutus::Acount.where(:name => "Unearned Revenue", :tenant => my_tenant).last
+debit_account = Plutus::Account.where(:name => "Cash", :tenant => my_tenant).last
+credit_account = Plutus::Account.where(:name => "Unearned Revenue", :tenant => my_tenant).last
entry = Plutus::Entry.new(
:description => "Order placed for widgets",
:date => Date.yesterday,
:debits => [
{:account => debit_account, :amount => 100.00}],
@@ -335,10 +333,11 @@
[https://github.com/mbulat/plutus/tree/rails2](https://github.com/mbulat/plutus/tree/rails2)
* Gems in RubyGems.org >= 0.5.0 support Rails 3
* Gems in RubyGems.org >= 0.8.0 support Rails 4
* Gems in RubyGems.org >= 0.9.0 support Rails ~> 4.1
+* Gems in RubyGems.org >= 0.13.0 support Rails ~> 5.0
Upgrading from older versions
-----------------------------
As Plutus is still in alpha, there have been some breaking changes with previous versions.
@@ -370,11 +369,9 @@
========
Plutus is free software, but if you'd like to support development, feel free to send some bitcoins:
`1QFSdJheyFkLcsV8X428J8e3pYqX1nmW39`
-
-![bitcoin](https://dl.dropboxusercontent.com/u/8428240/plutus_tip.png)
Also, if anyone is using Plutus for bitcoin related accounting, I'd love to hear about it! Drop me a line.
ToDo
====