country_state_select 3.0.3 → 3.0.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (78) hide show
  1. checksums.yaml +5 -5
  2. data/.travis.yml +1 -1
  3. data/README.md +3 -1
  4. data/Rakefile +1 -2
  5. data/app/controllers/country_state_select/cscs_controller.rb +6 -6
  6. data/config/routes.rb +2 -2
  7. data/country_state_select.gemspec +11 -11
  8. data/lib/country_state_select.rb +27 -36
  9. data/lib/country_state_select/version.rb +1 -1
  10. data/spec/country_state_select_spec.rb +33 -38
  11. data/spec/spec_helper.rb +2 -2
  12. metadata +3 -135
  13. data/test/dummy/.gitignore +0 -16
  14. data/test/dummy/Gemfile +0 -44
  15. data/test/dummy/README.rdoc +0 -3
  16. data/test/dummy/Rakefile +0 -6
  17. data/test/dummy/app/assets/images/.keep +0 -0
  18. data/test/dummy/app/assets/javascripts/application.js +0 -19
  19. data/test/dummy/app/assets/javascripts/locations.coffee +0 -2
  20. data/test/dummy/app/assets/stylesheets/application.scss +0 -16
  21. data/test/dummy/app/assets/stylesheets/locations.css.scss +0 -3
  22. data/test/dummy/app/controllers/application_controller.rb +0 -5
  23. data/test/dummy/app/controllers/concerns/.keep +0 -0
  24. data/test/dummy/app/controllers/locations_controller.rb +0 -55
  25. data/test/dummy/app/form/location_form.rb +0 -11
  26. data/test/dummy/app/helpers/application_helper.rb +0 -2
  27. data/test/dummy/app/mailers/.keep +0 -0
  28. data/test/dummy/app/models/.keep +0 -0
  29. data/test/dummy/app/models/concerns/.keep +0 -0
  30. data/test/dummy/app/models/location.rb +0 -2
  31. data/test/dummy/app/views/layouts/application.html.erb +0 -16
  32. data/test/dummy/app/views/locations/_form.html.erb +0 -14
  33. data/test/dummy/app/views/locations/index.html.erb +0 -29
  34. data/test/dummy/app/views/locations/new.html.erb +0 -13
  35. data/test/dummy/app/views/locations/show.html.erb +0 -13
  36. data/test/dummy/bin/bundle +0 -3
  37. data/test/dummy/bin/rails +0 -4
  38. data/test/dummy/bin/rake +0 -4
  39. data/test/dummy/config.ru +0 -4
  40. data/test/dummy/config/application.rb +0 -23
  41. data/test/dummy/config/boot.rb +0 -4
  42. data/test/dummy/config/database.yml +0 -24
  43. data/test/dummy/config/environment.rb +0 -5
  44. data/test/dummy/config/environments/development.rb +0 -29
  45. data/test/dummy/config/environments/production.rb +0 -80
  46. data/test/dummy/config/environments/test.rb +0 -36
  47. data/test/dummy/config/initializers/backtrace_silencers.rb +0 -7
  48. data/test/dummy/config/initializers/filter_parameter_logging.rb +0 -4
  49. data/test/dummy/config/initializers/inflections.rb +0 -16
  50. data/test/dummy/config/initializers/mime_types.rb +0 -5
  51. data/test/dummy/config/initializers/secret_token.rb +0 -12
  52. data/test/dummy/config/initializers/session_store.rb +0 -3
  53. data/test/dummy/config/initializers/simple_form.rb +0 -165
  54. data/test/dummy/config/initializers/wrap_parameters.rb +0 -14
  55. data/test/dummy/config/locales/en.yml +0 -23
  56. data/test/dummy/config/locales/simple_form.en.yml +0 -31
  57. data/test/dummy/config/routes.rb +0 -4
  58. data/test/dummy/db/migrate/20140724080030_create_locations.rb +0 -10
  59. data/test/dummy/db/migrate/20151024160724_add_test_city_to_locations.rb +0 -5
  60. data/test/dummy/db/schema.rb +0 -24
  61. data/test/dummy/db/seeds.rb +0 -7
  62. data/test/dummy/lib/assets/.keep +0 -0
  63. data/test/dummy/lib/tasks/.keep +0 -0
  64. data/test/dummy/log/.keep +0 -0
  65. data/test/dummy/public/404.html +0 -58
  66. data/test/dummy/public/422.html +0 -58
  67. data/test/dummy/public/500.html +0 -57
  68. data/test/dummy/public/favicon.ico +0 -0
  69. data/test/dummy/public/robots.txt +0 -5
  70. data/test/dummy/test/controllers/.keep +0 -0
  71. data/test/dummy/test/fixtures/.keep +0 -0
  72. data/test/dummy/test/helpers/.keep +0 -0
  73. data/test/dummy/test/integration/.keep +0 -0
  74. data/test/dummy/test/mailers/.keep +0 -0
  75. data/test/dummy/test/models/.keep +0 -0
  76. data/test/dummy/test/test_helper.rb +0 -15
  77. data/test/dummy/vendor/assets/javascripts/.keep +0 -0
  78. data/test/dummy/vendor/assets/stylesheets/.keep +0 -0
@@ -1,58 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <title>The change you wanted was rejected (422)</title>
5
- <style>
6
- body {
7
- background-color: #EFEFEF;
8
- color: #2E2F30;
9
- text-align: center;
10
- font-family: arial, sans-serif;
11
- }
12
-
13
- div.dialog {
14
- width: 25em;
15
- margin: 4em auto 0 auto;
16
- border: 1px solid #CCC;
17
- border-right-color: #999;
18
- border-left-color: #999;
19
- border-bottom-color: #BBB;
20
- border-top: #B00100 solid 4px;
21
- border-top-left-radius: 9px;
22
- border-top-right-radius: 9px;
23
- background-color: white;
24
- padding: 7px 4em 0 4em;
25
- }
26
-
27
- h1 {
28
- font-size: 100%;
29
- color: #730E15;
30
- line-height: 1.5em;
31
- }
32
-
33
- body > p {
34
- width: 33em;
35
- margin: 0 auto 1em;
36
- padding: 1em 0;
37
- background-color: #F7F7F7;
38
- border: 1px solid #CCC;
39
- border-right-color: #999;
40
- border-bottom-color: #999;
41
- border-bottom-left-radius: 4px;
42
- border-bottom-right-radius: 4px;
43
- border-top-color: #DADADA;
44
- color: #666;
45
- box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
46
- }
47
- </style>
48
- </head>
49
-
50
- <body>
51
- <!-- This file lives in public/422.html -->
52
- <div class="dialog">
53
- <h1>The change you wanted was rejected.</h1>
54
- <p>Maybe you tried to change something you didn't have access to.</p>
55
- </div>
56
- <p>If you are the application owner check the logs for more information.</p>
57
- </body>
58
- </html>
@@ -1,57 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <title>We're sorry, but something went wrong (500)</title>
5
- <style>
6
- body {
7
- background-color: #EFEFEF;
8
- color: #2E2F30;
9
- text-align: center;
10
- font-family: arial, sans-serif;
11
- }
12
-
13
- div.dialog {
14
- width: 25em;
15
- margin: 4em auto 0 auto;
16
- border: 1px solid #CCC;
17
- border-right-color: #999;
18
- border-left-color: #999;
19
- border-bottom-color: #BBB;
20
- border-top: #B00100 solid 4px;
21
- border-top-left-radius: 9px;
22
- border-top-right-radius: 9px;
23
- background-color: white;
24
- padding: 7px 4em 0 4em;
25
- }
26
-
27
- h1 {
28
- font-size: 100%;
29
- color: #730E15;
30
- line-height: 1.5em;
31
- }
32
-
33
- body > p {
34
- width: 33em;
35
- margin: 0 auto 1em;
36
- padding: 1em 0;
37
- background-color: #F7F7F7;
38
- border: 1px solid #CCC;
39
- border-right-color: #999;
40
- border-bottom-color: #999;
41
- border-bottom-left-radius: 4px;
42
- border-bottom-right-radius: 4px;
43
- border-top-color: #DADADA;
44
- color: #666;
45
- box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
46
- }
47
- </style>
48
- </head>
49
-
50
- <body>
51
- <!-- This file lives in public/500.html -->
52
- <div class="dialog">
53
- <h1>We're sorry, but something went wrong.</h1>
54
- </div>
55
- <p>If you are the application owner check the logs for more information.</p>
56
- </body>
57
- </html>
File without changes
@@ -1,5 +0,0 @@
1
- # See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file
2
- #
3
- # To ban all spiders from the entire site uncomment the next two lines:
4
- # User-agent: *
5
- # Disallow: /
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -1,15 +0,0 @@
1
- ENV["RAILS_ENV"] ||= "test"
2
- require File.expand_path('../../config/environment', __FILE__)
3
- require 'rails/test_help'
4
-
5
- class ActiveSupport::TestCase
6
- ActiveRecord::Migration.check_pending!
7
-
8
- # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order.
9
- #
10
- # Note: You'll currently still have to declare fixtures explicitly in integration tests
11
- # -- they do not yet inherit this setting
12
- fixtures :all
13
-
14
- # Add more helper methods to be used by all tests here...
15
- end