0.0
The project is in a healthy, maintained state
A Rails engine to manage application settings on Lato projects!
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Runtime

>= 0
>= 7.1.1
 Project Readme

Lato Settings

Manage application settings on Lato projects.

Installation

Add required dependencies to your application's Gemfile:

# Use lato as application panel
gem "lato"
gem "lato_settings"

Install gem and run required tasks:

$ bundle
$ rails lato_settings:install:application
$ rails lato_settings:install:migrations
$ rails db:migrate

Mount lato settings routes on the config/routes.rb file:

Rails.application.routes.draw do
  mount LatoSettings::Engine => "/lato-settings"

  # ....
end

Import Lato Scss on app/assets/stylesheets/application.scss file:

@import 'lato_settings/application';

// ....

Import Lato Settings Js on app/javascript/application.js file:

import "lato_settings/application";

// ....

Development

Clone repository, install dependencies, run migrations and start:

$ git clone https://github.com/Lato-GAM/lato_settings
$ cd lato_settings
$ bundle
$ rails db:migrate
$ rails db:seed
$ foreman start -f Procfile.dev

Publish

$ ruby ./bin/publish.rb

License

The gem is available as open source under the terms of the MIT License.