ip_to_country 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (45) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.md +16 -0
  3. data/Rakefile +40 -0
  4. data/app/models/ip_to_country/geoip.rb +34 -0
  5. data/lib/generators/geoip/geoip_generator.rb +23 -0
  6. data/lib/generators/geoip/templates/migration.rb +23 -0
  7. data/lib/ip_to_country.rb +5 -0
  8. data/lib/ip_to_country/engine.rb +5 -0
  9. data/lib/ip_to_country/version.rb +4 -0
  10. data/lib/tasks/ip_to_country_tasks.rake +4 -0
  11. data/test/dummy/README.rdoc +261 -0
  12. data/test/dummy/Rakefile +7 -0
  13. data/test/dummy/app/assets/javascripts/application.js +15 -0
  14. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  15. data/test/dummy/app/controllers/application_controller.rb +4 -0
  16. data/test/dummy/app/helpers/application_helper.rb +3 -0
  17. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  18. data/test/dummy/config.ru +4 -0
  19. data/test/dummy/config/application.rb +60 -0
  20. data/test/dummy/config/boot.rb +11 -0
  21. data/test/dummy/config/database.yml +4 -0
  22. data/test/dummy/config/environment.rb +6 -0
  23. data/test/dummy/config/environments/development.rb +38 -0
  24. data/test/dummy/config/environments/production.rb +68 -0
  25. data/test/dummy/config/environments/test.rb +38 -0
  26. data/test/dummy/config/initializers/backtrace_silencers.rb +8 -0
  27. data/test/dummy/config/initializers/inflections.rb +16 -0
  28. data/test/dummy/config/initializers/mime_types.rb +6 -0
  29. data/test/dummy/config/initializers/secret_token.rb +8 -0
  30. data/test/dummy/config/initializers/session_store.rb +9 -0
  31. data/test/dummy/config/initializers/wrap_parameters.rb +15 -0
  32. data/test/dummy/config/locales/en.yml +5 -0
  33. data/test/dummy/config/routes.rb +5 -0
  34. data/test/dummy/db/migrate/001_create_geoips.rb +23 -0
  35. data/test/dummy/log/test.log +322 -0
  36. data/test/dummy/public/404.html +26 -0
  37. data/test/dummy/public/422.html +26 -0
  38. data/test/dummy/public/500.html +25 -0
  39. data/test/dummy/public/favicon.ico +0 -0
  40. data/test/dummy/script/rails +6 -0
  41. data/test/fixtures/geoips.yml +7 -0
  42. data/test/geoip_test.rb +17 -0
  43. data/test/ip_to_country_test.rb +8 -0
  44. data/test/test_helper.rb +28 -0
  45. metadata +145 -0
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/404.html -->
21
+ <div class="dialog">
22
+ <h1>The page you were looking for doesn't exist.</h1>
23
+ <p>You may have mistyped the address or the page may have moved.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/422.html -->
21
+ <div class="dialog">
22
+ <h1>The change you wanted was rejected.</h1>
23
+ <p>Maybe you tried to change something you didn't have access to.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,25 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/500.html -->
21
+ <div class="dialog">
22
+ <h1>We're sorry, but something went wrong.</h1>
23
+ </div>
24
+ </body>
25
+ </html>
File without changes
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
+
4
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
5
+ require File.expand_path('../../config/boot', __FILE__)
6
+ require 'rails/commands'
@@ -0,0 +1,7 @@
1
+ wonderland:
2
+ ip_from_string: '192.168.1.1'
3
+ ip_to_string: '192.168.1.20'
4
+ ip_from: 3232235777
5
+ ip_to: 3232235794
6
+ country_code: 'wd'
7
+ country_name: 'wonderland'
@@ -0,0 +1,17 @@
1
+ # -*- encoding : utf-8 -*-
2
+ require 'test_helper'
3
+
4
+ class GeoipTest < ActionController::TestCase
5
+
6
+ test "ip_to_integer" do
7
+ assert_equal(3232235778, IpToCountry::Geoip.ip_to_integer("192.168.1.2"))
8
+ assert_equal(0, IpToCountry::Geoip.ip_to_integer(""))
9
+ assert_equal(0, IpToCountry::Geoip.ip_to_integer("wrong.address"))
10
+ assert_equal(0, IpToCountry::Geoip.ip_to_integer(nil))
11
+ end
12
+
13
+ test "by_ip" do
14
+ assert_equal 'wonderland', IpToCountry::Geoip.by_ip("192.168.1.2").country_name
15
+ end
16
+
17
+ end
@@ -0,0 +1,8 @@
1
+ # -*- encoding : utf-8 -*-
2
+ require 'test_helper'
3
+
4
+ class IpToCountryTest < ActiveSupport::TestCase
5
+ test "truth" do
6
+ assert_kind_of Module, IpToCountry
7
+ end
8
+ end
@@ -0,0 +1,28 @@
1
+ # -*- encoding : utf-8 -*-
2
+ # Configure Rails Environment
3
+ ENV["RAILS_ENV"] = "test"
4
+
5
+ require File.expand_path("../dummy/config/environment.rb", __FILE__)
6
+ require "rails/test_help"
7
+ require 'coveralls'
8
+
9
+ Coveralls.wear!
10
+
11
+ Rails.backtrace_cleaner.remove_silencers!
12
+
13
+ # Run any available migration
14
+ ActiveRecord::Migrator.migrate File.expand_path("../dummy/db/migrate/", __FILE__)
15
+
16
+ # Load support files
17
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
18
+
19
+ # Load fixtures from the engine
20
+ if ActiveSupport::TestCase.method_defined?(:fixture_path=)
21
+ ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
22
+
23
+ class ActiveSupport::TestCase
24
+ self.use_transactional_fixtures = true
25
+ self.use_instantiated_fixtures = false
26
+ fixtures :all
27
+ end
28
+ end
metadata ADDED
@@ -0,0 +1,145 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ip_to_country
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Vincent Pochet
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-04-19 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rails
16
+ requirement: &15605500 !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: 3.2.12
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: *15605500
25
+ - !ruby/object:Gem::Dependency
26
+ name: pg
27
+ requirement: &15632440 !ruby/object:Gem::Requirement
28
+ none: false
29
+ requirements:
30
+ - - ! '>='
31
+ - !ruby/object:Gem::Version
32
+ version: '0'
33
+ type: :development
34
+ prerelease: false
35
+ version_requirements: *15632440
36
+ description: Simple tool to find the country of an ip address.
37
+ email:
38
+ - vincent.pochet@gmail.com
39
+ executables: []
40
+ extensions: []
41
+ extra_rdoc_files: []
42
+ files:
43
+ - app/models/ip_to_country/geoip.rb
44
+ - lib/ip_to_country/engine.rb
45
+ - lib/ip_to_country/version.rb
46
+ - lib/ip_to_country.rb
47
+ - lib/generators/geoip/geoip_generator.rb
48
+ - lib/generators/geoip/templates/migration.rb
49
+ - lib/tasks/ip_to_country_tasks.rake
50
+ - MIT-LICENSE
51
+ - Rakefile
52
+ - README.md
53
+ - test/ip_to_country_test.rb
54
+ - test/geoip_test.rb
55
+ - test/test_helper.rb
56
+ - test/fixtures/geoips.yml
57
+ - test/dummy/log/test.log
58
+ - test/dummy/script/rails
59
+ - test/dummy/public/favicon.ico
60
+ - test/dummy/public/500.html
61
+ - test/dummy/public/422.html
62
+ - test/dummy/public/404.html
63
+ - test/dummy/config/application.rb
64
+ - test/dummy/config/database.yml
65
+ - test/dummy/config/initializers/wrap_parameters.rb
66
+ - test/dummy/config/initializers/mime_types.rb
67
+ - test/dummy/config/initializers/backtrace_silencers.rb
68
+ - test/dummy/config/initializers/inflections.rb
69
+ - test/dummy/config/initializers/session_store.rb
70
+ - test/dummy/config/initializers/secret_token.rb
71
+ - test/dummy/config/locales/en.yml
72
+ - test/dummy/config/boot.rb
73
+ - test/dummy/config/routes.rb
74
+ - test/dummy/config/environment.rb
75
+ - test/dummy/config/environments/development.rb
76
+ - test/dummy/config/environments/test.rb
77
+ - test/dummy/config/environments/production.rb
78
+ - test/dummy/README.rdoc
79
+ - test/dummy/app/helpers/application_helper.rb
80
+ - test/dummy/app/controllers/application_controller.rb
81
+ - test/dummy/app/assets/stylesheets/application.css
82
+ - test/dummy/app/assets/javascripts/application.js
83
+ - test/dummy/app/views/layouts/application.html.erb
84
+ - test/dummy/config.ru
85
+ - test/dummy/Rakefile
86
+ - test/dummy/db/migrate/001_create_geoips.rb
87
+ homepage: https://github.com/vincent-pochet/ip_to_country
88
+ licenses: []
89
+ post_install_message:
90
+ rdoc_options: []
91
+ require_paths:
92
+ - lib
93
+ required_ruby_version: !ruby/object:Gem::Requirement
94
+ none: false
95
+ requirements:
96
+ - - ! '>='
97
+ - !ruby/object:Gem::Version
98
+ version: '0'
99
+ required_rubygems_version: !ruby/object:Gem::Requirement
100
+ none: false
101
+ requirements:
102
+ - - ! '>='
103
+ - !ruby/object:Gem::Version
104
+ version: '0'
105
+ requirements: []
106
+ rubyforge_project:
107
+ rubygems_version: 1.8.10
108
+ signing_key:
109
+ specification_version: 3
110
+ summary: Simple tool to find the country of an ip address
111
+ test_files:
112
+ - test/ip_to_country_test.rb
113
+ - test/geoip_test.rb
114
+ - test/test_helper.rb
115
+ - test/fixtures/geoips.yml
116
+ - test/dummy/log/test.log
117
+ - test/dummy/script/rails
118
+ - test/dummy/public/favicon.ico
119
+ - test/dummy/public/500.html
120
+ - test/dummy/public/422.html
121
+ - test/dummy/public/404.html
122
+ - test/dummy/config/application.rb
123
+ - test/dummy/config/database.yml
124
+ - test/dummy/config/initializers/wrap_parameters.rb
125
+ - test/dummy/config/initializers/mime_types.rb
126
+ - test/dummy/config/initializers/backtrace_silencers.rb
127
+ - test/dummy/config/initializers/inflections.rb
128
+ - test/dummy/config/initializers/session_store.rb
129
+ - test/dummy/config/initializers/secret_token.rb
130
+ - test/dummy/config/locales/en.yml
131
+ - test/dummy/config/boot.rb
132
+ - test/dummy/config/routes.rb
133
+ - test/dummy/config/environment.rb
134
+ - test/dummy/config/environments/development.rb
135
+ - test/dummy/config/environments/test.rb
136
+ - test/dummy/config/environments/production.rb
137
+ - test/dummy/README.rdoc
138
+ - test/dummy/app/helpers/application_helper.rb
139
+ - test/dummy/app/controllers/application_controller.rb
140
+ - test/dummy/app/assets/stylesheets/application.css
141
+ - test/dummy/app/assets/javascripts/application.js
142
+ - test/dummy/app/views/layouts/application.html.erb
143
+ - test/dummy/config.ru
144
+ - test/dummy/Rakefile
145
+ - test/dummy/db/migrate/001_create_geoips.rb