Repository is archived
No release in over 3 years
Low commit activity in last 3 years
Helena Administration is a simple rails application that provides a user interface to manage apps running with the Helena framework.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Project Readme

Build Status Maintainability Test Coverage Dependency Status

Helena Administration

Helena Administration is a simple rails application that provides a user interface to manage apps running with the Helena framework.

Features

  • Manage surveys, question groups and questions
  • Survey versioning
  • Export answers as CSV or JSON

Requirements

see requirements for running an application using Helena

Installation

Add this line to your application's Gemfile:

gem 'helena_administration', git: 'git://github.com/gurix/helena_administration.git'

And then execute:

$ bundle install

Usage

Add the following line to your routes to include administration in your App

mount HelenaAdministration::Engine, at: '/admin'

To protect you can use i.e devise. See https://github.com/plataformatec/devise/wiki/How-To:-Define-resource-actions-that-require-authentication-using-routes.rb

authenticate :user do
  mount HelenaAdministration::Engine, at: '/admin'
end

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

Contact

Markus Graf info@markusgraf.ch

Support

If you like helena and want to support the development, I would appreciate a donation:

Donate

License

Helena Administration is a simple rails application that provides a user interface to manage apps running with the Helena framework. Copyright (C) 2014 Markus Graf info@markusgraf.ch

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.