sg_postcode 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (77) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +29 -0
  4. data/lib/sg_postcode.rb +22 -0
  5. data/lib/sg_postcode/array.rb +30 -0
  6. data/lib/sg_postcode/converters/long_lat_converter.rb +87 -0
  7. data/lib/sg_postcode/response/config.rb +34 -0
  8. data/lib/sg_postcode/response/json_output.rb +48 -0
  9. data/lib/sg_postcode/response/response.rb +22 -0
  10. data/lib/sg_postcode/response/response_builder.rb +21 -0
  11. data/lib/sg_postcode/services/google.rb +22 -0
  12. data/lib/sg_postcode/version.rb +3 -0
  13. data/lib/tasks/sg_postcode_tasks.rake +5 -0
  14. data/test/converters/test_long_lat_converter.rb +17 -0
  15. data/test/dummy/README.rdoc +28 -0
  16. data/test/dummy/Rakefile +6 -0
  17. data/test/dummy/app/assets/javascripts/application.js +13 -0
  18. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  19. data/test/dummy/app/controllers/application_controller.rb +5 -0
  20. data/test/dummy/app/controllers/homes_controller.rb +8 -0
  21. data/test/dummy/app/helpers/application_helper.rb +2 -0
  22. data/test/dummy/app/views/homes/index.html.erb +141 -0
  23. data/test/dummy/app/views/layouts/application.html.erb +23 -0
  24. data/test/dummy/bin/bundle +3 -0
  25. data/test/dummy/bin/rails +4 -0
  26. data/test/dummy/bin/rake +4 -0
  27. data/test/dummy/bin/setup +29 -0
  28. data/test/dummy/config.ru +4 -0
  29. data/test/dummy/config/application.rb +26 -0
  30. data/test/dummy/config/boot.rb +5 -0
  31. data/test/dummy/config/database.yml +25 -0
  32. data/test/dummy/config/environment.rb +5 -0
  33. data/test/dummy/config/environments/development.rb +41 -0
  34. data/test/dummy/config/environments/production.rb +79 -0
  35. data/test/dummy/config/environments/test.rb +42 -0
  36. data/test/dummy/config/initializers/assets.rb +11 -0
  37. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  38. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  39. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  40. data/test/dummy/config/initializers/inflections.rb +16 -0
  41. data/test/dummy/config/initializers/mime_types.rb +4 -0
  42. data/test/dummy/config/initializers/session_store.rb +3 -0
  43. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  44. data/test/dummy/config/locales/en.yml +23 -0
  45. data/test/dummy/config/routes.rb +57 -0
  46. data/test/dummy/config/secrets.yml +22 -0
  47. data/test/dummy/db/development.sqlite3 +0 -0
  48. data/test/dummy/db/test.sqlite3 +0 -0
  49. data/test/dummy/log/development.log +5046 -0
  50. data/test/dummy/log/test.log +225 -0
  51. data/test/dummy/public/404.html +67 -0
  52. data/test/dummy/public/422.html +67 -0
  53. data/test/dummy/public/500.html +66 -0
  54. data/test/dummy/public/favicon.ico +0 -0
  55. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/-vQYSUkE9lGmrmiORXoPfBwAf3hR234Yok5jnBQrzyo.cache +1 -0
  56. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/9DGvqRf86Gyp3vd0KXPT1Xhx9MyFgIZywKHd-SN_vj0.cache +1 -0
  57. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/CiSgr1SAu2SQdLy0phRQpULdqgyMSS2NtQpuHlxzB6s.cache +1 -0
  58. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/RCSidKcxbxGQunodZFTx_an2UpxtX0c4CgWUAifF1Zc.cache +3 -0
  59. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/RzQHQwY4ozzo0ESckKkxMAZBV2a9PFG4f27Ao0lIZOk.cache +2 -0
  60. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/VMj2FphcEriKcPhX84DUfL4KLpP8lwwOX3YiUlddU8Q.cache +0 -0
  61. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/WXAJAhHe2YtSSQHEqqlrP41iupUol2lRZHo9aSDtqDk.cache +1 -0
  62. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/_LRrankhfE2ypIWNdzZlGeJp_CnDa9Limi8PMPenLGs.cache +0 -0
  63. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/kSxhTk2OTbIhyjFKfQKiwi9N89JVI2KMi2-t4I2nkKo.cache +0 -0
  64. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/kgKFQq9K2CKWDviK9J2kse2ZTlIFyP_yFiSBv5HAZWY.cache +3 -0
  65. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/l5QHQQcUNuQQC_6QrqHceFwt6ukt54_erDN70ansVL4.cache +1 -0
  66. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/lz1MBX9tRsdihuh-tESZsyE93OVaYcpwQQTOD4WIEG8.cache +0 -0
  67. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/meCcv5Dm5dZTAH3JEtCm80y9z6fLXLVcTaKDik82Vbs.cache +0 -0
  68. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/uiSc7dBC0BJJjflpgOIsEPJlC1BL3UAtHZD4yDYa9Zo.cache +2 -0
  69. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/xDi0XH-TKuUZ70g472LXoPtaOpeNK-iGRkR4_A1Nsqw.cache +1 -0
  70. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/zHq3zhOzmWMYy7_JkcW1UXBNAtYl_r4kz_Ax8mdeLOI.cache +1 -0
  71. data/test/dummy/tmp/pids/server.pid +1 -0
  72. data/test/response/test_json_output.rb +15 -0
  73. data/test/response/test_response_builder.rb +72 -0
  74. data/test/sample_response.json +49 -0
  75. data/test/test_helper.rb +24 -0
  76. data/test/test_sg_postcode.rb +51 -0
  77. metadata +211 -0
@@ -0,0 +1 @@
1
+ "%��Rm�v�S3.��O�L���ڹc�ƕq�=_j�
@@ -0,0 +1,3 @@
1
+ [o:Set:
2
+ @hash{
3
+ I"environment-version:ETTI"environment-paths;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"dfile-digest:///Users/kevin/Working/sg_postcode/test/dummy/app/assets/javascripts/application.js;TTI"Ufile-digest:///Users/kevin/Working/sg_postcode/test/dummy/app/assets/javascripts;TT
@@ -0,0 +1 @@
1
+ I"�file:///Users/kevin/Working/sg_postcode/test/dummy/app/assets/javascripts/application.js?type=application/javascript&id=111a3e1774af54b29abaf86c2ba0bf19231f70a1bc95d257dec2f86b4678136e:ET
@@ -0,0 +1,2 @@
1
+ [o:Set:
2
+ @hash{ I"environment-version:ETTI"environment-paths;TTI"Lprocessors:type=application/javascript&file_type=application/javascript;TTI"dfile-digest:///Users/kevin/Working/sg_postcode/test/dummy/app/assets/javascripts/application.js;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"Ufile-digest:///Users/kevin/Working/sg_postcode/test/dummy/app/assets/javascripts;TT
@@ -0,0 +1 @@
1
+ I"�file:///Users/kevin/Working/sg_postcode/test/dummy/app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=17d82d6cb6ed94aabfdd0bc6a576be4611ce69f1c079ab30d1df4b2b58c4803f:ET
@@ -0,0 +1 @@
1
+ "%�W\�yho9S���ƫ˥��)|�~���(���
@@ -0,0 +1 @@
1
+ 18647
@@ -0,0 +1,15 @@
1
+ require 'test_helper'
2
+ require 'json'
3
+
4
+ class TestJsonOutput < Minitest::Test
5
+ def setup
6
+ path = File.join(File.dirname(__FILE__), '..', 'sample_response.json')
7
+ @file = File.read path
8
+ @json = JSON.parse(@file)
9
+ end
10
+
11
+ def test_data
12
+ response = SgPostcode::Response.new(@file)
13
+ assert_kind_of Hash, response.data
14
+ end
15
+ end
@@ -0,0 +1,72 @@
1
+ require 'test_helper'
2
+ require 'json'
3
+
4
+ class TestResponseBuilder < Minitest::Test
5
+ def setup
6
+ json = {
7
+ 'results' => [
8
+ 'name' => 'KevinTran',
9
+ 'jobs' => [
10
+ { 'title' => 'Developer' },
11
+ { 'title' => 'Consultant' }
12
+ ]
13
+ ]
14
+ }
15
+
16
+ @builder = SgPostcode::ResponseBuilder::JsonOutput.new(json)
17
+ end
18
+
19
+ def test_digg_1st_level
20
+ key_path = ['name']
21
+
22
+ assert_equal 'KevinTran', @builder.digg(key_path)
23
+ end
24
+
25
+ def test_digg_deeper_level
26
+ key_path = ['jobs', 0, 'title']
27
+
28
+ assert_equal 'Developer', @builder.digg(key_path)
29
+ end
30
+
31
+ def test_digg_with_invalid_key_path
32
+ key_path = ['jobs', 2, 'title']
33
+
34
+ assert_equal({}, @builder.digg(key_path))
35
+ end
36
+
37
+ def test_digg_with_other_invalid_key_path1
38
+ key_path = ['jobs', 0, 'title1']
39
+
40
+ assert_equal({}, @builder.digg(key_path))
41
+ end
42
+
43
+ def test_digg_with_other_invalid_key_path2
44
+ key_path = ['oops']
45
+
46
+ assert_equal({}, @builder.digg(key_path))
47
+ end
48
+
49
+ def set_up_data_for_test_data
50
+ path = File.join(File.dirname(__FILE__), '..', 'sample_response.json')
51
+ file = File.read path
52
+
53
+ @json = JSON.parse(file)
54
+ @builder = SgPostcode::ResponseBuilder::JsonOutput.new(@json)
55
+ end
56
+
57
+ def test_data
58
+ set_up_data_for_test_data
59
+
60
+ result = @builder.data
61
+
62
+ refute_nil result[:format_address]
63
+ refute_nil result[:lat]
64
+ refute_nil result[:long]
65
+ end
66
+
67
+ def test_calling_data_method_raise_error
68
+ @abstract_builder = SgPostcode::ResponseBuilder::Builder.new(nil)
69
+
70
+ assert_raises(NotImplementedError) { @abstract_builder.data }
71
+ end
72
+ end
@@ -0,0 +1,49 @@
1
+ {
2
+ "results" : [
3
+ {
4
+ "address_components" : [
5
+ {
6
+ "long_name" : "050335",
7
+ "short_name" : "050335",
8
+ "types" : [ "postal_code" ]
9
+ },
10
+ {
11
+ "long_name" : "Outram",
12
+ "short_name" : "Outram",
13
+ "types" : [ "neighborhood", "political" ]
14
+ },
15
+ {
16
+ "long_name" : "Singapore",
17
+ "short_name" : "Singapore",
18
+ "types" : [ "locality", "political" ]
19
+ },
20
+ {
21
+ "long_name" : "Singapore",
22
+ "short_name" : "SG",
23
+ "types" : [ "country", "political" ]
24
+ }
25
+ ],
26
+ "formatted_address" : "Singapore 050335",
27
+ "geometry" : {
28
+ "location" : {
29
+ "lat" : 1.282573,
30
+ "lng" : 103.843098
31
+ },
32
+ "location_type" : "APPROXIMATE",
33
+ "viewport" : {
34
+ "northeast" : {
35
+ "lat" : 1.283921980291502,
36
+ "lng" : 103.8444469802915
37
+ },
38
+ "southwest" : {
39
+ "lat" : 1.281224019708498,
40
+ "lng" : 103.8417490197085
41
+ }
42
+ }
43
+ },
44
+ "place_id" : "ChIJAenlH3MZ2jER7D351vE8fgo",
45
+ "types" : [ "postal_code" ]
46
+ }
47
+ ],
48
+ "status" : "OK"
49
+ }
@@ -0,0 +1,24 @@
1
+ # Configure Rails Environment
2
+ ENV["RAILS_ENV"] = "test"
3
+ require 'simplecov'
4
+ SimpleCov.start do
5
+ add_filter "/test/"
6
+ end
7
+
8
+ require File.expand_path("../../test/dummy/config/environment.rb", __FILE__)
9
+ ActiveRecord::Migrator.migrations_paths = [File.expand_path("../../test/dummy/db/migrate", __FILE__)]
10
+ require "rails/test_help"
11
+ require "minitest/autorun"
12
+
13
+ # Filter out Minitest backtrace while allowing backtrace from other libraries
14
+ # to be shown.
15
+ Minitest.backtrace_filter = Minitest::BacktraceFilter.new
16
+
17
+ # Load support files
18
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
19
+
20
+ # Load fixtures from the engine
21
+ if ActiveSupport::TestCase.respond_to?(:fixture_path=)
22
+ ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
23
+ ActiveSupport::TestCase.fixtures :all
24
+ end
@@ -0,0 +1,51 @@
1
+ require 'test_helper'
2
+
3
+ class TestSgPostcode < Minitest::Test
4
+ def test_init_new_sg_postcode_array
5
+ postcode_array = SgPostcode::Array.new([])
6
+ assert_kind_of SgPostcode::Array, postcode_array
7
+ end
8
+
9
+ def test_convert_to_long_lat_array
10
+ postcode_array = SgPostcode::Array.new([])
11
+ postcode_array.convert
12
+ end
13
+
14
+ def test_real_convert
15
+ array_convert =
16
+ SgPostcode::Array
17
+ .new(['546080', '238858'])
18
+ .convert
19
+
20
+ assert_kind_of Array, array_convert
21
+ assert_equal 2, array_convert.count
22
+ refute_operator array_convert.first, :key?, :density
23
+ assert_operator array_convert.first, :key?, :format_address
24
+ end
25
+
26
+ def test_real_convert_with_density
27
+ array_convert =
28
+ SgPostcode::Array
29
+ .new(['540000'] * 10)
30
+ .convert
31
+
32
+ assert_kind_of Array, array_convert
33
+ assert_equal 1, array_convert.count
34
+ assert_operator array_convert.first, :key?, :density
35
+ assert_equal 10, array_convert.first[:density]
36
+ end
37
+
38
+ def test_invalid_convert
39
+ array_convert =
40
+ SgPostcode::Array
41
+ .new(['Totally cannot exist', nil])
42
+ .convert
43
+
44
+ assert_kind_of Array, array_convert
45
+ end
46
+
47
+ def test_convert_with_options
48
+ convert = SgPostcode::Array.new(['238438'], host: :Google)
49
+ assert_kind_of Array, convert.convert
50
+ end
51
+ end
metadata ADDED
@@ -0,0 +1,211 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: sg_postcode
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.1.1
5
+ platform: ruby
6
+ authors:
7
+ - Duy Khoa
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-07-20 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 4.2.3
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 4.2.3
27
+ - !ruby/object:Gem::Dependency
28
+ name: sqlite3
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: Convert SG Postcode to long lat array
42
+ email:
43
+ - duykhoa12t@gmail.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - MIT-LICENSE
49
+ - Rakefile
50
+ - lib/sg_postcode.rb
51
+ - lib/sg_postcode/array.rb
52
+ - lib/sg_postcode/converters/long_lat_converter.rb
53
+ - lib/sg_postcode/response/config.rb
54
+ - lib/sg_postcode/response/json_output.rb
55
+ - lib/sg_postcode/response/response.rb
56
+ - lib/sg_postcode/response/response_builder.rb
57
+ - lib/sg_postcode/services/google.rb
58
+ - lib/sg_postcode/version.rb
59
+ - lib/tasks/sg_postcode_tasks.rake
60
+ - test/converters/test_long_lat_converter.rb
61
+ - test/dummy/README.rdoc
62
+ - test/dummy/Rakefile
63
+ - test/dummy/app/assets/javascripts/application.js
64
+ - test/dummy/app/assets/stylesheets/application.css
65
+ - test/dummy/app/controllers/application_controller.rb
66
+ - test/dummy/app/controllers/homes_controller.rb
67
+ - test/dummy/app/helpers/application_helper.rb
68
+ - test/dummy/app/views/homes/index.html.erb
69
+ - test/dummy/app/views/layouts/application.html.erb
70
+ - test/dummy/bin/bundle
71
+ - test/dummy/bin/rails
72
+ - test/dummy/bin/rake
73
+ - test/dummy/bin/setup
74
+ - test/dummy/config.ru
75
+ - test/dummy/config/application.rb
76
+ - test/dummy/config/boot.rb
77
+ - test/dummy/config/database.yml
78
+ - test/dummy/config/environment.rb
79
+ - test/dummy/config/environments/development.rb
80
+ - test/dummy/config/environments/production.rb
81
+ - test/dummy/config/environments/test.rb
82
+ - test/dummy/config/initializers/assets.rb
83
+ - test/dummy/config/initializers/backtrace_silencers.rb
84
+ - test/dummy/config/initializers/cookies_serializer.rb
85
+ - test/dummy/config/initializers/filter_parameter_logging.rb
86
+ - test/dummy/config/initializers/inflections.rb
87
+ - test/dummy/config/initializers/mime_types.rb
88
+ - test/dummy/config/initializers/session_store.rb
89
+ - test/dummy/config/initializers/wrap_parameters.rb
90
+ - test/dummy/config/locales/en.yml
91
+ - test/dummy/config/routes.rb
92
+ - test/dummy/config/secrets.yml
93
+ - test/dummy/db/development.sqlite3
94
+ - test/dummy/db/test.sqlite3
95
+ - test/dummy/log/development.log
96
+ - test/dummy/log/test.log
97
+ - test/dummy/public/404.html
98
+ - test/dummy/public/422.html
99
+ - test/dummy/public/500.html
100
+ - test/dummy/public/favicon.ico
101
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/-vQYSUkE9lGmrmiORXoPfBwAf3hR234Yok5jnBQrzyo.cache
102
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/9DGvqRf86Gyp3vd0KXPT1Xhx9MyFgIZywKHd-SN_vj0.cache
103
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/CiSgr1SAu2SQdLy0phRQpULdqgyMSS2NtQpuHlxzB6s.cache
104
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/RCSidKcxbxGQunodZFTx_an2UpxtX0c4CgWUAifF1Zc.cache
105
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/RzQHQwY4ozzo0ESckKkxMAZBV2a9PFG4f27Ao0lIZOk.cache
106
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/VMj2FphcEriKcPhX84DUfL4KLpP8lwwOX3YiUlddU8Q.cache
107
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/WXAJAhHe2YtSSQHEqqlrP41iupUol2lRZHo9aSDtqDk.cache
108
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/_LRrankhfE2ypIWNdzZlGeJp_CnDa9Limi8PMPenLGs.cache
109
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/kSxhTk2OTbIhyjFKfQKiwi9N89JVI2KMi2-t4I2nkKo.cache
110
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/kgKFQq9K2CKWDviK9J2kse2ZTlIFyP_yFiSBv5HAZWY.cache
111
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/l5QHQQcUNuQQC_6QrqHceFwt6ukt54_erDN70ansVL4.cache
112
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/lz1MBX9tRsdihuh-tESZsyE93OVaYcpwQQTOD4WIEG8.cache
113
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/meCcv5Dm5dZTAH3JEtCm80y9z6fLXLVcTaKDik82Vbs.cache
114
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/uiSc7dBC0BJJjflpgOIsEPJlC1BL3UAtHZD4yDYa9Zo.cache
115
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/xDi0XH-TKuUZ70g472LXoPtaOpeNK-iGRkR4_A1Nsqw.cache
116
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/zHq3zhOzmWMYy7_JkcW1UXBNAtYl_r4kz_Ax8mdeLOI.cache
117
+ - test/dummy/tmp/pids/server.pid
118
+ - test/response/test_json_output.rb
119
+ - test/response/test_response_builder.rb
120
+ - test/sample_response.json
121
+ - test/test_helper.rb
122
+ - test/test_sg_postcode.rb
123
+ homepage:
124
+ licenses:
125
+ - MIT
126
+ metadata: {}
127
+ post_install_message:
128
+ rdoc_options: []
129
+ require_paths:
130
+ - lib
131
+ required_ruby_version: !ruby/object:Gem::Requirement
132
+ requirements:
133
+ - - ">="
134
+ - !ruby/object:Gem::Version
135
+ version: '0'
136
+ required_rubygems_version: !ruby/object:Gem::Requirement
137
+ requirements:
138
+ - - ">="
139
+ - !ruby/object:Gem::Version
140
+ version: '0'
141
+ requirements: []
142
+ rubyforge_project:
143
+ rubygems_version: 2.4.6
144
+ signing_key:
145
+ specification_version: 4
146
+ summary: Convert SG Postcode to long lat array
147
+ test_files:
148
+ - test/converters/test_long_lat_converter.rb
149
+ - test/dummy/app/assets/javascripts/application.js
150
+ - test/dummy/app/assets/stylesheets/application.css
151
+ - test/dummy/app/controllers/application_controller.rb
152
+ - test/dummy/app/controllers/homes_controller.rb
153
+ - test/dummy/app/helpers/application_helper.rb
154
+ - test/dummy/app/views/homes/index.html.erb
155
+ - test/dummy/app/views/layouts/application.html.erb
156
+ - test/dummy/bin/bundle
157
+ - test/dummy/bin/rails
158
+ - test/dummy/bin/rake
159
+ - test/dummy/bin/setup
160
+ - test/dummy/config/application.rb
161
+ - test/dummy/config/boot.rb
162
+ - test/dummy/config/database.yml
163
+ - test/dummy/config/environment.rb
164
+ - test/dummy/config/environments/development.rb
165
+ - test/dummy/config/environments/production.rb
166
+ - test/dummy/config/environments/test.rb
167
+ - test/dummy/config/initializers/assets.rb
168
+ - test/dummy/config/initializers/backtrace_silencers.rb
169
+ - test/dummy/config/initializers/cookies_serializer.rb
170
+ - test/dummy/config/initializers/filter_parameter_logging.rb
171
+ - test/dummy/config/initializers/inflections.rb
172
+ - test/dummy/config/initializers/mime_types.rb
173
+ - test/dummy/config/initializers/session_store.rb
174
+ - test/dummy/config/initializers/wrap_parameters.rb
175
+ - test/dummy/config/locales/en.yml
176
+ - test/dummy/config/routes.rb
177
+ - test/dummy/config/secrets.yml
178
+ - test/dummy/config.ru
179
+ - test/dummy/db/development.sqlite3
180
+ - test/dummy/db/test.sqlite3
181
+ - test/dummy/log/development.log
182
+ - test/dummy/log/test.log
183
+ - test/dummy/public/404.html
184
+ - test/dummy/public/422.html
185
+ - test/dummy/public/500.html
186
+ - test/dummy/public/favicon.ico
187
+ - test/dummy/Rakefile
188
+ - test/dummy/README.rdoc
189
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/-vQYSUkE9lGmrmiORXoPfBwAf3hR234Yok5jnBQrzyo.cache
190
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/9DGvqRf86Gyp3vd0KXPT1Xhx9MyFgIZywKHd-SN_vj0.cache
191
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/_LRrankhfE2ypIWNdzZlGeJp_CnDa9Limi8PMPenLGs.cache
192
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/CiSgr1SAu2SQdLy0phRQpULdqgyMSS2NtQpuHlxzB6s.cache
193
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/kgKFQq9K2CKWDviK9J2kse2ZTlIFyP_yFiSBv5HAZWY.cache
194
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/kSxhTk2OTbIhyjFKfQKiwi9N89JVI2KMi2-t4I2nkKo.cache
195
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/l5QHQQcUNuQQC_6QrqHceFwt6ukt54_erDN70ansVL4.cache
196
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/lz1MBX9tRsdihuh-tESZsyE93OVaYcpwQQTOD4WIEG8.cache
197
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/meCcv5Dm5dZTAH3JEtCm80y9z6fLXLVcTaKDik82Vbs.cache
198
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/RCSidKcxbxGQunodZFTx_an2UpxtX0c4CgWUAifF1Zc.cache
199
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/RzQHQwY4ozzo0ESckKkxMAZBV2a9PFG4f27Ao0lIZOk.cache
200
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/uiSc7dBC0BJJjflpgOIsEPJlC1BL3UAtHZD4yDYa9Zo.cache
201
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/VMj2FphcEriKcPhX84DUfL4KLpP8lwwOX3YiUlddU8Q.cache
202
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/WXAJAhHe2YtSSQHEqqlrP41iupUol2lRZHo9aSDtqDk.cache
203
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/xDi0XH-TKuUZ70g472LXoPtaOpeNK-iGRkR4_A1Nsqw.cache
204
+ - test/dummy/tmp/cache/assets/development/sprockets/v3.0/zHq3zhOzmWMYy7_JkcW1UXBNAtYl_r4kz_Ax8mdeLOI.cache
205
+ - test/dummy/tmp/pids/server.pid
206
+ - test/response/test_json_output.rb
207
+ - test/response/test_response_builder.rb
208
+ - test/sample_response.json
209
+ - test/test_helper.rb
210
+ - test/test_sg_postcode.rb
211
+ has_rdoc: