
Security News
Oxlint Introduces Type-Aware Linting Preview
Oxlint’s new preview brings type-aware linting powered by typescript-go, combining advanced TypeScript rules with native-speed performance.
Rails plugin providing financal accounting models and helpers.
In Rails simply add to your Gemfile:
gem 'has_accounts'
Generate and run migrations
rake has_accounts:install:migrations
rake db:migrate
Seed basic account data
AccountType.create!([
{:name => "current_assets", :title => "Umlaufvermögen"},
{:name => "capital_assets", :title => "Anlagevermögen"},
{:name => "outside_capital", :title => "Fremdkapital"},
{:name => "equity_capital", :title => "Eigenkapital"},
{:name => "costs", :title => "Aufwand"},
{:name => "earnings", :title => "Ertrag"},
])
Add specific seed depending on the needs of your project, e.g.:
current_assets = AccountType.find_by_name('current_assets')
capital_assets = AccountType.find_by_name('capital_assets')
earnings = AccountType.find_by_name('earnings')
costs = AccountType.find_by_name('costs')
Account.create!([
{:code => "1000", :title => "Kasse", :account_type => current_assets},
{:code => "1100", :title => "Debitoren", :account_type => current_assets},
{:code => "3200", :title => "Dienstleistungsertrag", :account_type => earnings},
{:code => "3900", :title => "Debitorenverlust", :account_type => costs},
{:code => "8000", :title => "Ausserordentlicher Ertrag", :account_type => earnings}
])
A few models are available:
class Booking
class Account
class AccountType
There's also a ready to use module available to attach accountable functionality to existing models.
To use it, simply add the following to your Model:
include HasAccounts::Model
Released under the MIT license.
FAQs
Unknown package
We found that has_accounts demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oxlint’s new preview brings type-aware linting powered by typescript-go, combining advanced TypeScript rules with native-speed performance.
Security News
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.