Activerse
Usage
Run rails generate activerse:install
to create the configuration file, as well as uncheking your credentials.yml.enc
file from version control and adding it to the .gitignore
. Then you can setup how you want your credentials file to look like in the initializer
file activerse.rb
like this:
config.credentials do
section "Email configuration", :email do
set :port, to: ask("Port:")
set :email, to: ask("Email:")
set :pwd, to: ask("Auth Token:")
end
end
See the wiki for more informations.
When ready to fill your credentials run:
$ rails g activerse:fill
In the config/initializers/activese.rb
file you can specify more general settings.
See the wiki or directly the initializer file for more configuration options.
Installation
Add this line to your application's Gemfile:
gem 'activerse'
And then execute:
$ bundle
Or install it yourself as:
$ gem install activerse
To create all necessary setup and files run:
$ rails g activerse:install
Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/pietromoro/activerse. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.
License
The gem is available as open source under the terms of the MIT License.
Code of Conduct
Everyone interacting in the Activerse project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.