https://github.com/tdfischer/hsm
Heatsync Labs Management
https://github.com/tdfischer/hsm
Last synced: 12 months ago
JSON representation
Heatsync Labs Management
- Host: GitHub
- URL: https://github.com/tdfischer/hsm
- Owner: tdfischer
- Created: 2011-11-27T03:31:02.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2011-12-05T14:18:25.000Z (over 14 years ago)
- Last Synced: 2025-06-07T15:05:58.227Z (about 1 year ago)
- Language: Ruby
- Homepage:
- Size: 200 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
Awesome Lists containing this project
README
Heatsync Labs - Hackerspace Management
=========
This code is based on Rails 3.1.0
Prerequisites
-------------
* bundler
Production Environment
----------------------
$ git clone git@github.com:bowerman/hsm.git
$ cd hsm
$ bundle install
$ rake db:seed
Development / Test Environment
------------------------------
$ git clone git@github.com:bowerman/hsm.git
$ cd hsm
$ bundle install --without production staging ci
$ rake db:seed
Tests
-----
Tests are written using factory girl, rspec, and capybara. Factories are located in **spec/factories.rb**. Model specs are located in **spec/models**. Integration specs are in **spec/requests**.
To run the test suite:
$ bundle exec rspec spec/
To get code coverage (and run the test suite as well)
$ rake cover_me:all