Add this line to your application's Gemfile:
gem 'ip-lookup'
And then execute:
$ bundle
Or install it yourself as:
$ gem install ip-lookup
Load Ip::Lookup
irb(main):001:0> require "ip/lookup"
=> true
Then try:
For get IP Address
irb(main):001:0> Ip::Lookup.server_whatismyipaddress
=> "36.72.215.137"
For get Information with table
irb(main):001:0> Ip::Lookup.cli
+-------------+---------------------------------------+
| String | Value |
+-------------+---------------------------------------+
| Network | AS17974 Telekomunikasi Indonesia (PT) |
| City | Yogyakarta |
| Country | Indonesia |
| CountryCode | ID |
| Isp | PT. TELKOM INDONESIA |
| Lat | -7.8014 |
| Lon | 110.3647 |
| Org | |
| IP Address | 36.72.215.137 |
| Region | YO |
| RegionName | Yogyakarta |
| Timezone | Asia/Jakarta |
| Zip | |
+-------------+---------------------------------------+
=> nil
For get Information without table (Object)
irb(main):001:0> Ip::Lookup.cli table: false
=> {"as"=>"AS17974 Telekomunikasi Indonesia (PT)", "city"=>"Yogyakarta", "country"=>"Indonesia", "countryCode"=>"ID", "isp"=>"PT. TELKOM INDONESIA", "lat"=>-7.8014, "lon"=>110.3647, "org"=>"", "query"=>"36.72.215.137", "region"=>"YO", "regionName"=>"Yogyakarta", "status"=>"success", "timezone"=>"Asia/Jakarta", "zip"=>""}
irb(main):001:0> ap Ip::Lookup.cli table: false
{
"as" => "AS17974 Telekomunikasi Indonesia (PT)",
"city" => "Yogyakarta",
"country" => "Indonesia",
"countryCode" => "ID",
"isp" => "PT. TELKOM INDONESIA",
"lat" => -7.8014,
"lon" => 110.3647,
"org" => "",
"query" => "36.72.215.137",
"region" => "YO",
"regionName" => "Yogyakarta",
"status" => "success",
"timezone" => "Asia/Jakarta",
"zip" => ""
}
=> nil
For get Information with parameter
irb(main):001:0> Ip::Lookup.get :as
=> "AS17974 Telekomunikasi Indonesia (PT)"
List of parameter for get
, can use String
or Symbol
+-------------+--------------+
| String | Symbol |
+-------------+--------------+
| as | :as |
| city | :city |
| country | :country |
| countryCode | :countryCode |
| isp | :isp |
| lat | :lat |
| lon | :lon |
| org | :org |
| query | :query |
| region | :region |
| regionName | :regionName |
| timezone | :timezone |
| zip | :zip |
+-------------+--------------+
After checking out the repo, run bin/setup
to install dependencies. Then, run rake test
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 tags, and push the .gem
file to rubygems.org.
Bug reports and pull requests are welcome on GitHub at https://github.com/SunDi3yansyah/ip-lookup-rb. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
The gem is available as open source under the terms of the MIT License.
Everyone interacting in the Ip::Lookup project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.