umlaut-primo 0.0.1 → 0.1.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.
- data/README.md +90 -2
- data/lib/umlaut-primo.rb +1 -0
- data/lib/umlaut_primo/primo_service.rb +67 -79
- data/lib/umlaut_primo/primo_source.rb +31 -1
- data/lib/umlaut_primo/railtie.rb +8 -0
- data/lib/umlaut_primo/version.rb +1 -1
- data/test/dummy/config/application.rb +0 -1
- data/test/dummy/config/umlaut_services.yml +0 -3
- data/test/dummy/log/test.log +418 -19243
- data/test/test_helper.rb +0 -2
- metadata +8 -9
- data/lib/umlaut_primo.rb +0 -2
- data/test/dummy/log/development.log +0 -4
data/test/test_helper.rb
CHANGED
@@ -9,8 +9,6 @@ Rails.backtrace_cleaner.remove_silencers!
|
|
9
9
|
# Complete stack trace with deprecation warnings from rails
|
10
10
|
ActiveSupport::Deprecation.debug = true
|
11
11
|
|
12
|
-
require File.expand_path("../../lib/umlaut_primo.rb", __FILE__)
|
13
|
-
|
14
12
|
# VCR is used to 'record' HTTP interactions with
|
15
13
|
# third party services used in tests, and play em
|
16
14
|
# back. Useful for efficiency, also useful for
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: umlaut-primo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-03-
|
12
|
+
date: 2013-03-13 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rake
|
@@ -50,7 +50,7 @@ dependencies:
|
|
50
50
|
requirements:
|
51
51
|
- - ~>
|
52
52
|
- !ruby/object:Gem::Version
|
53
|
-
version: 1.0.
|
53
|
+
version: 1.0.8
|
54
54
|
type: :runtime
|
55
55
|
prerelease: false
|
56
56
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -58,7 +58,7 @@ dependencies:
|
|
58
58
|
requirements:
|
59
59
|
- - ~>
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: 1.0.
|
61
|
+
version: 1.0.8
|
62
62
|
- !ruby/object:Gem::Dependency
|
63
63
|
name: jquery-rails
|
64
64
|
requirement: !ruby/object:Gem::Requirement
|
@@ -147,10 +147,11 @@ executables: []
|
|
147
147
|
extensions: []
|
148
148
|
extra_rdoc_files: []
|
149
149
|
files:
|
150
|
+
- lib/umlaut-primo.rb
|
150
151
|
- lib/umlaut_primo/primo_service.rb
|
151
152
|
- lib/umlaut_primo/primo_source.rb
|
153
|
+
- lib/umlaut_primo/railtie.rb
|
152
154
|
- lib/umlaut_primo/version.rb
|
153
|
-
- lib/umlaut_primo.rb
|
154
155
|
- MIT-LICENSE
|
155
156
|
- Rakefile
|
156
157
|
- README.md
|
@@ -183,7 +184,6 @@ files:
|
|
183
184
|
- test/dummy/db/migrate/20130306173029_umlaut_add_service_response_index.umlaut.rb
|
184
185
|
- test/dummy/db/schema.rb
|
185
186
|
- test/dummy/db/seeds.rb
|
186
|
-
- test/dummy/log/development.log
|
187
187
|
- test/dummy/log/test.log
|
188
188
|
- test/dummy/public/404.html
|
189
189
|
- test/dummy/public/422.html
|
@@ -216,7 +216,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
216
216
|
version: '0'
|
217
217
|
segments:
|
218
218
|
- 0
|
219
|
-
hash:
|
219
|
+
hash: 4352882914527669125
|
220
220
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
221
221
|
none: false
|
222
222
|
requirements:
|
@@ -225,7 +225,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
225
225
|
version: '0'
|
226
226
|
segments:
|
227
227
|
- 0
|
228
|
-
hash:
|
228
|
+
hash: 4352882914527669125
|
229
229
|
requirements: []
|
230
230
|
rubyforge_project:
|
231
231
|
rubygems_version: 1.8.24
|
@@ -263,7 +263,6 @@ test_files:
|
|
263
263
|
- test/dummy/db/migrate/20130306173029_umlaut_add_service_response_index.umlaut.rb
|
264
264
|
- test/dummy/db/schema.rb
|
265
265
|
- test/dummy/db/seeds.rb
|
266
|
-
- test/dummy/log/development.log
|
267
266
|
- test/dummy/log/test.log
|
268
267
|
- test/dummy/public/404.html
|
269
268
|
- test/dummy/public/422.html
|
data/lib/umlaut_primo.rb
DELETED