Alien
Interface to Alien Technology ARCA enabled readers, patched to be compatible with Ruby from version 1.8.7 to 2.1
Installation
Add this line to your application's Gemfile:
gem 'alien'And then execute:
$ bundleOr install it yourself as:
$ gem install alienUsage
Fetching the taglist
require 'alien'
r = Alien::AlienReader.new
r.open('150.164.9.34')
taglist_string = r.taglist
lines = taglist_string.split "\r\n"
tl = Array.new
lines.each { |line| tl.push Alien::AlienTag.new(line) }
puts tl
r.closeContributing
- Fork it ( http://github.com/arturhoo/alien/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