traject_profiling 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.coveralls.yml +1 -0
- data/.rubocop.yml +26 -0
- data/.rubocop_todo.yml +23 -0
- data/.travis.yml +3 -1
- data/README.md +7 -4
- data/Rakefile +7 -8
- data/lib/traject/profiling.rb +3 -2
- data/lib/traject/profiling/f880_macros.rb +68 -0
- data/lib/traject/profiling/field_macros.rb +57 -9
- data/lib/traject/profiling/version.rb +1 -1
- data/spec/f880_macros_spec.rb +603 -0
- data/spec/field_macros_spec.rb +346 -24
- data/spec/spec_helper.rb +15 -3
- data/traject_profiling.gemspec +18 -15
- metadata +52 -4
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: traject_profiling
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Naomi Dushay
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-10-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: traject
|
@@ -108,30 +108,77 @@ dependencies:
|
|
108
108
|
- - ">="
|
109
109
|
- !ruby/object:Gem::Version
|
110
110
|
version: '0'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: coveralls
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - ">="
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - ">="
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '0'
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: rubocop
|
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'
|
139
|
+
- !ruby/object:Gem::Dependency
|
140
|
+
name: rubocop-rspec
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - ">="
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: '0'
|
146
|
+
type: :development
|
147
|
+
prerelease: false
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - ">="
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: '0'
|
111
153
|
description: Profiling macros for MARC bib records; meant to be used with traject
|
112
|
-
to index
|
154
|
+
to index into Solr.
|
113
155
|
email:
|
114
156
|
- ndushay@stanford.edu
|
115
157
|
executables: []
|
116
158
|
extensions: []
|
117
159
|
extra_rdoc_files: []
|
118
160
|
files:
|
161
|
+
- ".coveralls.yml"
|
119
162
|
- ".gitignore"
|
120
163
|
- ".rspec"
|
164
|
+
- ".rubocop.yml"
|
165
|
+
- ".rubocop_todo.yml"
|
121
166
|
- ".travis.yml"
|
122
167
|
- Gemfile
|
123
168
|
- LICENSE.txt
|
124
169
|
- README.md
|
125
170
|
- Rakefile
|
126
171
|
- lib/traject/profiling.rb
|
172
|
+
- lib/traject/profiling/f880_macros.rb
|
127
173
|
- lib/traject/profiling/field_macros.rb
|
128
174
|
- lib/traject/profiling/version.rb
|
175
|
+
- spec/f880_macros_spec.rb
|
129
176
|
- spec/field_macros_spec.rb
|
130
177
|
- spec/spec_helper.rb
|
131
178
|
- traject_profiling.gemspec
|
132
179
|
homepage: https://github.com/sul-dlss/traject_profiling.git
|
133
180
|
licenses:
|
134
|
-
- Apache
|
181
|
+
- Apache-2.0
|
135
182
|
metadata: {}
|
136
183
|
post_install_message:
|
137
184
|
rdoc_options: []
|
@@ -156,6 +203,7 @@ signing_key:
|
|
156
203
|
specification_version: 4
|
157
204
|
summary: Traject macros to provide profiling information on MARC bibliographic records.
|
158
205
|
test_files:
|
206
|
+
- spec/f880_macros_spec.rb
|
159
207
|
- spec/field_macros_spec.rb
|
160
208
|
- spec/spec_helper.rb
|
161
209
|
has_rdoc:
|