Gem for accesing business information from ARES database. This gem is based on ruby-ares .
This gem is not implementing whole ARES API, only the part that allow to get information about company. If you need more functionality, feel free to contribute or use an API directly.
Add this line to your application's Gemfile:
gem "ruby_ares", "~> 0.2.0", github: "railsformers/ruby_ares"
To get ARES information about a company, use the Ares
class:
subject = RubyAres::Subject.get("24704440")
The subject
object will contain all the information about the company. Check ARES docs for object structure: DOCS
Return data is default type of OpenStruct
. If you prefer Hash
type, you can use
subject = RubyAres::Subject.get("24704440", Hash)
{
"ico"=>"24704440",
"obchodniJmeno"=>"Railsformers s.r.o.",
"sidlo"=>
{"kodStatu"=>"CZ",
"nazevStatu"=>"Česká republika",
"kodKraje"=>132,
"nazevKraje"=>"Moravskoslezský kraj",
"kodOkresu"=>3807,
"nazevOkresu"=>"Ostrava-město",
"kodObce"=>554821,
"nazevObce"=>"Ostrava",
"kodMestskeCastiObvodu"=>546224,
"kodUlice"=>367664,
"nazevMestskeCastiObvodu"=>"Poruba",
"nazevUlice"=>"Vřesinská",
"cisloDomovni"=>2371,
"kodCastiObce"=>414085,
"cisloOrientacni"=>33,
"nazevCastiObce"=>"Poruba",
"kodAdresnihoMista"=>73387169,
"psc"=>70800,
"textovaAdresa"=>"Vřesinská 2371/33, Poruba, 70800 Ostrava"},
"pravniForma"=>"112",
"datumVzniku"=>"2010-06-30",
"datumAktualizace"=>"2023-12-06",
"dic"=>"CZ24704440",
"icoId"=>"24704440",
"adresaDorucovaci"=>{},
"seznamRegistraci"=>
{"stavZdrojeVr"=>"AKTIVNI",
"stavZdrojeRes"=>"AKTIVNI",
"stavZdrojeRzp"=>"AKTIVNI",
"stavZdrojeNrpzs"=>"NEEXISTUJICI",
"stavZdrojeRpsh"=>"NEEXISTUJICI",
"stavZdrojeRcns"=>"NEEXISTUJICI",
"stavZdrojeSzr"=>"NEEXISTUJICI",
"stavZdrojeDph"=>"AKTIVNI",
"stavZdrojeSd"=>"NEEXISTUJICI",
"stavZdrojeIr"=>"NEEXISTUJICI",
"stavZdrojeCeu"=>"NEEXISTUJICI",
"stavZdrojeRs"=>"NEEXISTUJICI",
"stavZdrojeRed"=>"NEEXISTUJICI"},
"primarniZdroj"=>"vr",
"czNace"=>["00", "6820"],
"dicSkDph"=>"N/A"
}
To get ARES information about a company in more detail, use the PublicRegister
class:
response = RubyAres::PublicRegister.get("24704440")
file_mark(response) # use of file mark parser
In case of an error, the Ares
class will raise an RubyAres::Error
exception. The exception will contain the error message from ARES, response status, type and response.
begin
subject = RubyAres::Subject.get("non-existing")
rescue RubyAres::Error => e
puts e.status
puts e.type
puts e.response
end
- rename
RubyARES
toRubyAres
- rename
RubyARES::Parser::ARESDatabaseError
andRubyARES::Parser::ParseError
toRubyAres::Error
- adjust
subject.attribute
calls to new structure
After checking out the repo, run bin/setup
to install dependencies. Then, run rake spec
to run the tests. You can also run bin/console
for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run bundle exec rake install
. To release a new version, update the version number in version.rb
, and then run bundle exec rake release
, which will create a git tag for the version, push git commits and the created tag, and push the .gem
file to rubygems.org.
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/ruby_ares.
The gem is available as open source under the terms of the MIT License.