The website of the North West Ruby User Group, a Manchester-based user group for folk interested in the Ruby programming language.
After cloning the repository, run bundle install
to install all the gem
dependencies.
# install MySQL on Mac OS X
brew install mysql
# or on Ubuntu
sudo apt-get install mysql-server mysql-client libmysqlclient-dev
# setup the database
bundle exec rake db:setup
Use bundle exec rails server
to run rails locally.
bundle exec rake
Check gems for known vulnerabilities:
bundle exec bundle-audit check --update
Run static code analysis on codebase to identify common vulnerabilities:
bundle exec brakeman -z
All contributions welcome!