geoxml-rails 3.0.0
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.
- checksums.yaml +7 -0
- data/.gitignore +9 -0
- data/CODE_OF_CONDUCT.md +13 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +13 -0
- data/README.md +42 -0
- data/Rakefile +2 -0
- data/bin/console +14 -0
- data/bin/setup +7 -0
- data/geoxml-rails.gemspec +26 -0
- data/geoxml-test/.gitignore +17 -0
- data/geoxml-test/Gemfile +46 -0
- data/geoxml-test/Gemfile.lock +169 -0
- data/geoxml-test/README.rdoc +28 -0
- data/geoxml-test/Rakefile +6 -0
- data/geoxml-test/app/assets/images/.keep +0 -0
- data/geoxml-test/app/assets/javascripts/application.js +17 -0
- data/geoxml-test/app/assets/javascripts/application.jscurl +1 -0
- data/geoxml-test/app/assets/stylesheets/application.css +15 -0
- data/geoxml-test/app/controllers/application_controller.rb +5 -0
- data/geoxml-test/app/controllers/concerns/.keep +0 -0
- data/geoxml-test/app/helpers/application_helper.rb +2 -0
- data/geoxml-test/app/mailers/.keep +0 -0
- data/geoxml-test/app/models/.keep +0 -0
- data/geoxml-test/app/models/concerns/.keep +0 -0
- data/geoxml-test/app/views/layouts/application.html.erb +14 -0
- data/geoxml-test/bin/bundle +3 -0
- data/geoxml-test/bin/rails +8 -0
- data/geoxml-test/bin/rake +8 -0
- data/geoxml-test/bin/setup +29 -0
- data/geoxml-test/bin/spring +15 -0
- data/geoxml-test/config/application.rb +26 -0
- data/geoxml-test/config/boot.rb +3 -0
- data/geoxml-test/config/database.yml +25 -0
- data/geoxml-test/config/environment.rb +5 -0
- data/geoxml-test/config/environments/development.rb +41 -0
- data/geoxml-test/config/environments/production.rb +79 -0
- data/geoxml-test/config/environments/test.rb +42 -0
- data/geoxml-test/config/initializers/assets.rb +11 -0
- data/geoxml-test/config/initializers/backtrace_silencers.rb +7 -0
- data/geoxml-test/config/initializers/cookies_serializer.rb +3 -0
- data/geoxml-test/config/initializers/filter_parameter_logging.rb +4 -0
- data/geoxml-test/config/initializers/inflections.rb +16 -0
- data/geoxml-test/config/initializers/mime_types.rb +4 -0
- data/geoxml-test/config/initializers/session_store.rb +3 -0
- data/geoxml-test/config/initializers/wrap_parameters.rb +14 -0
- data/geoxml-test/config/locales/en.yml +23 -0
- data/geoxml-test/config/routes.rb +56 -0
- data/geoxml-test/config/secrets.yml +22 -0
- data/geoxml-test/config.ru +4 -0
- data/geoxml-test/db/seeds.rb +7 -0
- data/geoxml-test/lib/assets/.keep +0 -0
- data/geoxml-test/lib/tasks/.keep +0 -0
- data/geoxml-test/log/.keep +0 -0
- data/geoxml-test/public/404.html +67 -0
- data/geoxml-test/public/422.html +67 -0
- data/geoxml-test/public/500.html +66 -0
- data/geoxml-test/public/favicon.ico +0 -0
- data/geoxml-test/public/robots.txt +5 -0
- data/geoxml-test/test/controllers/.keep +0 -0
- data/geoxml-test/test/fixtures/.keep +0 -0
- data/geoxml-test/test/helpers/.keep +0 -0
- data/geoxml-test/test/integration/.keep +0 -0
- data/geoxml-test/test/mailers/.keep +0 -0
- data/geoxml-test/test/models/.keep +0 -0
- data/geoxml-test/test/test_helper.rb +10 -0
- data/geoxml-test/vendor/assets/javascripts/.keep +0 -0
- data/geoxml-test/vendor/assets/stylesheets/.keep +0 -0
- data/lib/geoxml/rails/version.rb +5 -0
- data/lib/geoxml/rails.rb +8 -0
- data/vendor/assets/javascripts/geoxml3.js +1955 -0
- metadata +142 -0
metadata
ADDED
@@ -0,0 +1,142 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: geoxml-rails
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 3.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Benjamin Pearce
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-02-24 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.8'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.8'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
description:
|
42
|
+
email:
|
43
|
+
- hawk.git@bcpearce.com
|
44
|
+
executables: []
|
45
|
+
extensions: []
|
46
|
+
extra_rdoc_files: []
|
47
|
+
files:
|
48
|
+
- ".gitignore"
|
49
|
+
- CODE_OF_CONDUCT.md
|
50
|
+
- Gemfile
|
51
|
+
- LICENSE.txt
|
52
|
+
- README.md
|
53
|
+
- Rakefile
|
54
|
+
- bin/console
|
55
|
+
- bin/setup
|
56
|
+
- geoxml-rails.gemspec
|
57
|
+
- geoxml-test/.gitignore
|
58
|
+
- geoxml-test/Gemfile
|
59
|
+
- geoxml-test/Gemfile.lock
|
60
|
+
- geoxml-test/README.rdoc
|
61
|
+
- geoxml-test/Rakefile
|
62
|
+
- geoxml-test/app/assets/images/.keep
|
63
|
+
- geoxml-test/app/assets/javascripts/application.js
|
64
|
+
- geoxml-test/app/assets/javascripts/application.jscurl
|
65
|
+
- geoxml-test/app/assets/stylesheets/application.css
|
66
|
+
- geoxml-test/app/controllers/application_controller.rb
|
67
|
+
- geoxml-test/app/controllers/concerns/.keep
|
68
|
+
- geoxml-test/app/helpers/application_helper.rb
|
69
|
+
- geoxml-test/app/mailers/.keep
|
70
|
+
- geoxml-test/app/models/.keep
|
71
|
+
- geoxml-test/app/models/concerns/.keep
|
72
|
+
- geoxml-test/app/views/layouts/application.html.erb
|
73
|
+
- geoxml-test/bin/bundle
|
74
|
+
- geoxml-test/bin/rails
|
75
|
+
- geoxml-test/bin/rake
|
76
|
+
- geoxml-test/bin/setup
|
77
|
+
- geoxml-test/bin/spring
|
78
|
+
- geoxml-test/config.ru
|
79
|
+
- geoxml-test/config/application.rb
|
80
|
+
- geoxml-test/config/boot.rb
|
81
|
+
- geoxml-test/config/database.yml
|
82
|
+
- geoxml-test/config/environment.rb
|
83
|
+
- geoxml-test/config/environments/development.rb
|
84
|
+
- geoxml-test/config/environments/production.rb
|
85
|
+
- geoxml-test/config/environments/test.rb
|
86
|
+
- geoxml-test/config/initializers/assets.rb
|
87
|
+
- geoxml-test/config/initializers/backtrace_silencers.rb
|
88
|
+
- geoxml-test/config/initializers/cookies_serializer.rb
|
89
|
+
- geoxml-test/config/initializers/filter_parameter_logging.rb
|
90
|
+
- geoxml-test/config/initializers/inflections.rb
|
91
|
+
- geoxml-test/config/initializers/mime_types.rb
|
92
|
+
- geoxml-test/config/initializers/session_store.rb
|
93
|
+
- geoxml-test/config/initializers/wrap_parameters.rb
|
94
|
+
- geoxml-test/config/locales/en.yml
|
95
|
+
- geoxml-test/config/routes.rb
|
96
|
+
- geoxml-test/config/secrets.yml
|
97
|
+
- geoxml-test/db/seeds.rb
|
98
|
+
- geoxml-test/lib/assets/.keep
|
99
|
+
- geoxml-test/lib/tasks/.keep
|
100
|
+
- geoxml-test/log/.keep
|
101
|
+
- geoxml-test/public/404.html
|
102
|
+
- geoxml-test/public/422.html
|
103
|
+
- geoxml-test/public/500.html
|
104
|
+
- geoxml-test/public/favicon.ico
|
105
|
+
- geoxml-test/public/robots.txt
|
106
|
+
- geoxml-test/test/controllers/.keep
|
107
|
+
- geoxml-test/test/fixtures/.keep
|
108
|
+
- geoxml-test/test/helpers/.keep
|
109
|
+
- geoxml-test/test/integration/.keep
|
110
|
+
- geoxml-test/test/mailers/.keep
|
111
|
+
- geoxml-test/test/models/.keep
|
112
|
+
- geoxml-test/test/test_helper.rb
|
113
|
+
- geoxml-test/vendor/assets/javascripts/.keep
|
114
|
+
- geoxml-test/vendor/assets/stylesheets/.keep
|
115
|
+
- lib/geoxml/rails.rb
|
116
|
+
- lib/geoxml/rails/version.rb
|
117
|
+
- vendor/assets/javascripts/geoxml3.js
|
118
|
+
homepage: http://github.com/bcpearce/geoxml3-rails
|
119
|
+
licenses:
|
120
|
+
- Apache 2.0
|
121
|
+
metadata: {}
|
122
|
+
post_install_message:
|
123
|
+
rdoc_options: []
|
124
|
+
require_paths:
|
125
|
+
- lib
|
126
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
127
|
+
requirements:
|
128
|
+
- - ">="
|
129
|
+
- !ruby/object:Gem::Version
|
130
|
+
version: '0'
|
131
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
132
|
+
requirements:
|
133
|
+
- - ">="
|
134
|
+
- !ruby/object:Gem::Version
|
135
|
+
version: '0'
|
136
|
+
requirements: []
|
137
|
+
rubyforge_project:
|
138
|
+
rubygems_version: 2.4.6
|
139
|
+
signing_key:
|
140
|
+
specification_version: 4
|
141
|
+
summary: Inserts GeoXML3.js into the Rails asset pipeline.
|
142
|
+
test_files: []
|