geo_combine 0.0.5 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: geo_combine
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jack Reed
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-02-24 00:00:00.000000000 Z
11
+ date: 2015-07-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rsolr
@@ -38,6 +38,48 @@ dependencies:
38
38
  - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: json-schema
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: sanitize
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: thor
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
41
83
  - !ruby/object:Gem::Dependency
42
84
  name: bundler
43
85
  requirement: !ruby/object:Gem::Requirement
@@ -80,13 +122,29 @@ dependencies:
80
122
  - - ">="
81
123
  - !ruby/object:Gem::Version
82
124
  version: '0'
125
+ - !ruby/object:Gem::Dependency
126
+ name: rspec-html-matchers
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
83
139
  description: A Ruby toolkit for managing geospatial metadata
84
140
  email:
85
141
  - pjreed@stanford.edu
86
- executables: []
142
+ executables:
143
+ - geocombine
87
144
  extensions: []
88
145
  extra_rdoc_files: []
89
146
  files:
147
+ - ".coveralls.yml"
90
148
  - ".gitignore"
91
149
  - ".rspec"
92
150
  - ".travis.yml"
@@ -94,12 +152,20 @@ files:
94
152
  - LICENSE.txt
95
153
  - README.md
96
154
  - Rakefile
155
+ - bin/geocombine
97
156
  - geo_combine.gemspec
98
157
  - lib/geo_combine.rb
158
+ - lib/geo_combine/cli.rb
159
+ - lib/geo_combine/esri_open_data.rb
99
160
  - lib/geo_combine/fgdc.rb
161
+ - lib/geo_combine/formats.rb
162
+ - lib/geo_combine/formatting.rb
100
163
  - lib/geo_combine/geoblacklight.rb
164
+ - lib/geo_combine/geometry_types.rb
101
165
  - lib/geo_combine/iso19139.rb
166
+ - lib/geo_combine/subjects.rb
102
167
  - lib/geo_combine/version.rb
168
+ - lib/schema/geoblacklight-schema.json
103
169
  - lib/tasks/geo_combine.rake
104
170
  - lib/xslt/fgdc2geoBL.xsl
105
171
  - lib/xslt/fgdc2html.xsl
@@ -118,9 +184,17 @@ files:
118
184
  - lib/xslt/utils/strip-digits.xsl
119
185
  - lib/xslt/utils/url-decode.xsl
120
186
  - lib/xslt/utils/wrap-text.xsl
187
+ - spec/features/fgdc2html_spec.rb
188
+ - spec/features/iso2html_spec.rb
189
+ - spec/fixtures/docs/basic_geoblacklight.json
190
+ - spec/fixtures/docs/esri_open_data.json
191
+ - spec/fixtures/docs/full_geoblacklight.json
192
+ - spec/fixtures/json_docs.rb
121
193
  - spec/fixtures/xml_docs.rb
122
194
  - spec/helpers.rb
195
+ - spec/lib/geo_combine/esri_open_data_spec.rb
123
196
  - spec/lib/geo_combine/fgdc_spec.rb
197
+ - spec/lib/geo_combine/formatting_spec.rb
124
198
  - spec/lib/geo_combine/geoblacklight_spec.rb
125
199
  - spec/lib/geo_combine/iso19139_spec.rb
126
200
  - spec/lib/geo_combine_spec.rb
@@ -150,9 +224,17 @@ signing_key:
150
224
  specification_version: 4
151
225
  summary: A Ruby toolkit for managing geospatial metadata
152
226
  test_files:
227
+ - spec/features/fgdc2html_spec.rb
228
+ - spec/features/iso2html_spec.rb
229
+ - spec/fixtures/docs/basic_geoblacklight.json
230
+ - spec/fixtures/docs/esri_open_data.json
231
+ - spec/fixtures/docs/full_geoblacklight.json
232
+ - spec/fixtures/json_docs.rb
153
233
  - spec/fixtures/xml_docs.rb
154
234
  - spec/helpers.rb
235
+ - spec/lib/geo_combine/esri_open_data_spec.rb
155
236
  - spec/lib/geo_combine/fgdc_spec.rb
237
+ - spec/lib/geo_combine/formatting_spec.rb
156
238
  - spec/lib/geo_combine/geoblacklight_spec.rb
157
239
  - spec/lib/geo_combine/iso19139_spec.rb
158
240
  - spec/lib/geo_combine_spec.rb