Project

a4nt

0.0
Repository is archived
No release in over 3 years
Low commit activity in last 3 years
Rails Engine managing simple announcements. A4nt is mountable Engine for Ruby on Rails.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

>= 4.0.0
 Project Readme

A4nt

⚠️ This library is no longer maintained ⚠️

Installation

Add this line to your application's Gemfile:

gem 'a4nt'

For Rails 4

gem 'a4nt', '~> 2.0.0'

For Rails 3

gem 'a4nt', '~> 1.0.0'

And then execute:

bundle install
bundle exec rake a4nt:install:migrations
bundle exec rake db:migrate

And it needs to be mounted in config/routes.rb file:

mount A4nt::Engine, at: '/a4nt'
# /a4nt is just an example

MEMO: How to develop

Edit Rakefile and test/test_helper.rb to change dummy app.

bundle exec rake db:migrate
bundle exec rake test