map_project 0.0.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 (59) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +8 -0
  3. data/Gemfile +14 -0
  4. data/Gemfile.lock +128 -0
  5. data/MIT-LICENSE +20 -0
  6. data/README.md +75 -0
  7. data/README.rdoc +3 -0
  8. data/Rakefile +34 -0
  9. data/lib/map_project/map_project.rb +103 -0
  10. data/lib/map_project/version.rb +3 -0
  11. data/lib/map_project.rb +28 -0
  12. data/lib/tasks/map_project_tasks.rake +4 -0
  13. data/map_project.gemspec +19 -0
  14. data/spec/lib/map_project_helper.rb +57 -0
  15. data/spec/spec_helper.rb +1 -0
  16. data/test/dummy/README.rdoc +28 -0
  17. data/test/dummy/Rakefile +6 -0
  18. data/test/dummy/app/assets/images/.keep +0 -0
  19. data/test/dummy/app/assets/javascripts/application.js +13 -0
  20. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  21. data/test/dummy/app/controllers/application_controller.rb +5 -0
  22. data/test/dummy/app/controllers/concerns/.keep +0 -0
  23. data/test/dummy/app/helpers/application_helper.rb +2 -0
  24. data/test/dummy/app/mailers/.keep +0 -0
  25. data/test/dummy/app/models/.keep +0 -0
  26. data/test/dummy/app/models/concerns/.keep +0 -0
  27. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  28. data/test/dummy/bin/bundle +3 -0
  29. data/test/dummy/bin/rails +4 -0
  30. data/test/dummy/bin/rake +4 -0
  31. data/test/dummy/bin/setup +29 -0
  32. data/test/dummy/config/application.rb +26 -0
  33. data/test/dummy/config/boot.rb +5 -0
  34. data/test/dummy/config/database.yml +25 -0
  35. data/test/dummy/config/environment.rb +5 -0
  36. data/test/dummy/config/environments/development.rb +41 -0
  37. data/test/dummy/config/environments/production.rb +79 -0
  38. data/test/dummy/config/environments/test.rb +42 -0
  39. data/test/dummy/config/initializers/assets.rb +11 -0
  40. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  41. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  42. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  43. data/test/dummy/config/initializers/inflections.rb +16 -0
  44. data/test/dummy/config/initializers/mime_types.rb +4 -0
  45. data/test/dummy/config/initializers/session_store.rb +3 -0
  46. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  47. data/test/dummy/config/locales/en.yml +23 -0
  48. data/test/dummy/config/routes.rb +56 -0
  49. data/test/dummy/config/secrets.yml +22 -0
  50. data/test/dummy/config.ru +4 -0
  51. data/test/dummy/lib/assets/.keep +0 -0
  52. data/test/dummy/log/.keep +0 -0
  53. data/test/dummy/public/404.html +67 -0
  54. data/test/dummy/public/422.html +67 -0
  55. data/test/dummy/public/500.html +66 -0
  56. data/test/dummy/public/favicon.ico +0 -0
  57. data/test/map_project_test.rb +7 -0
  58. data/test/test_helper.rb +20 -0
  59. metadata +147 -0
metadata ADDED
@@ -0,0 +1,147 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: map_project
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Lu Zou
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-09-13 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Gem provides a way to calculate zoom level using boudary, and project
14
+ map to viewports(html elements)
15
+ email:
16
+ - luxizou.web@gmail.com
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - ".gitignore"
22
+ - Gemfile
23
+ - Gemfile.lock
24
+ - MIT-LICENSE
25
+ - README.md
26
+ - README.rdoc
27
+ - Rakefile
28
+ - lib/map_project.rb
29
+ - lib/map_project/map_project.rb
30
+ - lib/map_project/version.rb
31
+ - lib/tasks/map_project_tasks.rake
32
+ - map_project.gemspec
33
+ - spec/lib/map_project_helper.rb
34
+ - spec/spec_helper.rb
35
+ - test/dummy/README.rdoc
36
+ - test/dummy/Rakefile
37
+ - test/dummy/app/assets/images/.keep
38
+ - test/dummy/app/assets/javascripts/application.js
39
+ - test/dummy/app/assets/stylesheets/application.css
40
+ - test/dummy/app/controllers/application_controller.rb
41
+ - test/dummy/app/controllers/concerns/.keep
42
+ - test/dummy/app/helpers/application_helper.rb
43
+ - test/dummy/app/mailers/.keep
44
+ - test/dummy/app/models/.keep
45
+ - test/dummy/app/models/concerns/.keep
46
+ - test/dummy/app/views/layouts/application.html.erb
47
+ - test/dummy/bin/bundle
48
+ - test/dummy/bin/rails
49
+ - test/dummy/bin/rake
50
+ - test/dummy/bin/setup
51
+ - test/dummy/config.ru
52
+ - test/dummy/config/application.rb
53
+ - test/dummy/config/boot.rb
54
+ - test/dummy/config/database.yml
55
+ - test/dummy/config/environment.rb
56
+ - test/dummy/config/environments/development.rb
57
+ - test/dummy/config/environments/production.rb
58
+ - test/dummy/config/environments/test.rb
59
+ - test/dummy/config/initializers/assets.rb
60
+ - test/dummy/config/initializers/backtrace_silencers.rb
61
+ - test/dummy/config/initializers/cookies_serializer.rb
62
+ - test/dummy/config/initializers/filter_parameter_logging.rb
63
+ - test/dummy/config/initializers/inflections.rb
64
+ - test/dummy/config/initializers/mime_types.rb
65
+ - test/dummy/config/initializers/session_store.rb
66
+ - test/dummy/config/initializers/wrap_parameters.rb
67
+ - test/dummy/config/locales/en.yml
68
+ - test/dummy/config/routes.rb
69
+ - test/dummy/config/secrets.yml
70
+ - test/dummy/lib/assets/.keep
71
+ - test/dummy/log/.keep
72
+ - test/dummy/public/404.html
73
+ - test/dummy/public/422.html
74
+ - test/dummy/public/500.html
75
+ - test/dummy/public/favicon.ico
76
+ - test/map_project_test.rb
77
+ - test/test_helper.rb
78
+ homepage: https://github.com/luzou0526/map_project
79
+ licenses:
80
+ - MIT
81
+ metadata: {}
82
+ post_install_message:
83
+ rdoc_options: []
84
+ require_paths:
85
+ - lib
86
+ required_ruby_version: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - ">="
89
+ - !ruby/object:Gem::Version
90
+ version: '0'
91
+ required_rubygems_version: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - ">="
94
+ - !ruby/object:Gem::Version
95
+ version: '0'
96
+ requirements: []
97
+ rubyforge_project:
98
+ rubygems_version: 2.5.1
99
+ signing_key:
100
+ specification_version: 4
101
+ summary: Tools converting geo latlng map projection.
102
+ test_files:
103
+ - spec/lib/map_project_helper.rb
104
+ - spec/spec_helper.rb
105
+ - test/dummy/README.rdoc
106
+ - test/dummy/Rakefile
107
+ - test/dummy/app/assets/images/.keep
108
+ - test/dummy/app/assets/javascripts/application.js
109
+ - test/dummy/app/assets/stylesheets/application.css
110
+ - test/dummy/app/controllers/application_controller.rb
111
+ - test/dummy/app/controllers/concerns/.keep
112
+ - test/dummy/app/helpers/application_helper.rb
113
+ - test/dummy/app/mailers/.keep
114
+ - test/dummy/app/models/.keep
115
+ - test/dummy/app/models/concerns/.keep
116
+ - test/dummy/app/views/layouts/application.html.erb
117
+ - test/dummy/bin/bundle
118
+ - test/dummy/bin/rails
119
+ - test/dummy/bin/rake
120
+ - test/dummy/bin/setup
121
+ - test/dummy/config.ru
122
+ - test/dummy/config/application.rb
123
+ - test/dummy/config/boot.rb
124
+ - test/dummy/config/database.yml
125
+ - test/dummy/config/environment.rb
126
+ - test/dummy/config/environments/development.rb
127
+ - test/dummy/config/environments/production.rb
128
+ - test/dummy/config/environments/test.rb
129
+ - test/dummy/config/initializers/assets.rb
130
+ - test/dummy/config/initializers/backtrace_silencers.rb
131
+ - test/dummy/config/initializers/cookies_serializer.rb
132
+ - test/dummy/config/initializers/filter_parameter_logging.rb
133
+ - test/dummy/config/initializers/inflections.rb
134
+ - test/dummy/config/initializers/mime_types.rb
135
+ - test/dummy/config/initializers/session_store.rb
136
+ - test/dummy/config/initializers/wrap_parameters.rb
137
+ - test/dummy/config/locales/en.yml
138
+ - test/dummy/config/routes.rb
139
+ - test/dummy/config/secrets.yml
140
+ - test/dummy/lib/assets/.keep
141
+ - test/dummy/log/.keep
142
+ - test/dummy/public/404.html
143
+ - test/dummy/public/422.html
144
+ - test/dummy/public/500.html
145
+ - test/dummy/public/favicon.ico
146
+ - test/map_project_test.rb
147
+ - test/test_helper.rb