0.02
Repository is archived
No commit activity in last 3 years
No release in over 3 years
A web interface for Notable
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies
 Project Readme

Notable Web

A web interface for Notable

Installation

Add this line to your application’s Gemfile:

gem "notable_web"

And add it to your config/routes.rb.

mount NotableWeb::Engine, at: "notable"

Be sure to secure the dashboard in production.

Basic Authentication

Set the following variables in your environment or an initializer.

ENV["NOTABLE_USERNAME"] = "andrew"
ENV["NOTABLE_PASSWORD"] = "secret"

Devise

authenticate :user, ->(user) { user.admin? } do
  mount NotableWeb::Engine, at: "notable"
end

will_paginate

If using will_paginate, create an initializer config/initializers/kaminari.rb with:

Kaminari.configure do |config|
  config.page_method_name = :per_page_kaminari
end

to avoid conflicts.

History

View the changelog

Contributing

Everyone is encouraged to help improve this project. Here are a few ways you can help:

To get started with development:

git clone https://github.com/ankane/notable_web.git
cd notable_web
bundle install
bundle exec rake test