トリップキーから、2ちゃんねるのトリップ(ひとり用キャップ)を生成します。
10桁および12桁に対応しています。生キーには対応していません。
名前とトリップキー(#以降の文字列)は、自分でパースしてください。
require "digest/trip"
name= "name#password"
name, key = name.split "#", 2
trip = Digest::Trip.digest key
[name, trip].join "◆" #=> "name◆ozOtJW9BFA"
Add this line to your application's Gemfile:
gem 'digest-trip'
And then execute:
$ bundle
Or install it yourself as:
$ gem install digest-trip
- Fork it
- 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