A gem for validating USI (Unique Student Identifiers) for VET Students in Australia
From the Department of Industry's website -
USI is effectively an account or reference number made up of numbers and letters. The USI will allow all of an individual’s training records, entered in the national vocational education and training (VET) data collection, to be linked.
The USI will be available online and at no cost to the student. This USI will stay with the student for life and be recorded with any nationally recognised VET course that is undertaken from when the USI comes into effect.
Add this line to your application's Gemfile:
gem 'usi'
And then execute:
$ bundle
Or install it yourself as:
$ gem install usi
require'usi'Usi::Validator.new('223456789N').valid?in Rails 3+
classStudent < ActiveRecord::Basevalidates:identifier,usi: trueendin Rails 2.3
classStudent < ActiveRecord::Basevalidate:must_be_valid_format_usidefmust_be_valid_format_usierrors.add_to_base('USI format invalid')unlessUsi::Validator.new(usi).valid?endend- Fork it ( http://github.com/rdytech/usi/fork )
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request
