iqvoc_skosxl 2.3.1 → 2.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +17 -7
- data/Gemfile.lock +200 -156
- data/README.md +8 -0
- data/app/assets/stylesheets/iqvoc_skosxl/{entity_select.css → entity_select.css.scss} +1 -1
- data/app/assets/stylesheets/iqvoc_skosxl/manifest.css.scss +1 -0
- data/app/assets/stylesheets/manifest.css.scss +3 -0
- data/app/controllers/labels/versions_controller.rb +33 -37
- data/app/controllers/labels_controller.rb +32 -31
- data/app/controllers/rdf_controller.rb +6 -7
- data/app/helpers/iqvoc_skosxl_helper.rb +2 -9
- data/app/helpers/labels_helper.rb +7 -9
- data/app/models/concept/skosxl/extension.rb +2 -4
- data/app/models/label/relation/base.rb +10 -12
- data/app/models/label/relation/skosxl/base.rb +5 -3
- data/app/models/label/skosxl/base.rb +44 -70
- data/app/models/label/skosxl/properties/literal_form.rb +23 -0
- data/app/models/label/skosxl/validations.rb +28 -0
- data/app/models/labeling/skosxl/alt_label.rb +0 -2
- data/app/models/labeling/skosxl/base.rb +22 -16
- data/app/models/labeling/skosxl/hidden_label.rb +1 -3
- data/app/models/labeling/skosxl/pref_label.rb +0 -2
- data/app/views/labels/_form.html.erb +12 -10
- data/app/views/labels/_sidebar.html.erb +1 -0
- data/app/views/labels/show_published.html.erb +2 -2
- data/app/views/labels/show_unpublished.html.erb +6 -6
- data/app/views/partials/label/relation/_edit_base.html.erb +1 -1
- data/app/views/partials/label/skosxl/_new_link_base.html.erb +5 -5
- data/app/views/partials/labeling/skosxl/_edit_base.html.erb +13 -13
- data/app/views/rdf/show_label.iqrdf +2 -2
- data/config/application.rb +4 -34
- data/config/boot.rb +3 -12
- data/config/engine.rb +2 -4
- data/config/environment.rb +3 -3
- data/config/initializers/backtrace_silencers.rb +7 -0
- data/config/initializers/cookies_serializer.rb +3 -0
- data/config/initializers/filter_parameter_logging.rb +4 -0
- data/config/initializers/inflections.rb +16 -0
- data/config/initializers/iqvoc.rb +49 -3
- data/config/initializers/mime_types.rb +4 -0
- data/config/initializers/session_store.rb +1 -1
- data/config/initializers/wrap_parameters.rb +14 -0
- data/config/routes.rb +16 -8
- data/config/secrets.yml +11 -0
- data/db/migrate/20110408121540_extend_label.rb +9 -12
- data/db/migrate/20110408123644_add_label_relations.rb +11 -13
- data/iqvoc_skosxl.gemspec +15 -14
- data/lib/iqvoc/skosxl/version.rb +1 -1
- data/lib/iqvoc/xllabel.rb +1 -5
- data/lib/iqvoc_skosxl.rb +13 -12
- data/test/{functional → controllers}/routing_test.rb +4 -6
- data/test/fixtures/hobbies.nt +11 -0
- data/test/integration/concept_label_language_test.rb +44 -45
- data/test/integration/dashboard_test.rb +10 -12
- data/test/integration/edit_labels_test.rb +12 -14
- data/test/integration/label_creation_test.rb +43 -0
- data/test/integration/labels_order_test.rb +17 -17
- data/test/integration_test_helper.rb +29 -0
- data/test/models/label_test.rb +54 -0
- data/test/models/skos_importer_test.rb +55 -0
- data/test/test_helper.rb +6 -12
- metadata +45 -24
- data/app/assets/stylesheets/iqvoc_skosxl/manifest.css +0 -3
- data/app/assets/stylesheets/manifest.css +0 -5
- data/config/initializers/secret_token.rb +0 -10
- data/config/initializers/secret_token.rb.template +0 -9
- data/test/factories.rb +0 -22
- data/test/unit/label_test.rb +0 -41
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b1d981a3b680f7588e5bedc38c1587fad8a6fd00
|
4
|
+
data.tar.gz: 8f0de0e0d60bacdb9d399e3a14a8a991133f971c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3e8917c9c0e658393e768043ef9cc1650c0a93a34010852c3fd967f740b344ffbebd1922b28fc4e5c3af963f6fad78c47db406b6ab2efbf99dd908c53db0af71
|
7
|
+
data.tar.gz: 2ece560caed3c9325e91af799d30252937c981bbea264752a462c94c83ec10fa200e2243857b928ca4ff294d8a679528d56112847ef846de369d9b11b6a2b80e
|
data/Gemfile
CHANGED
@@ -1,13 +1,23 @@
|
|
1
1
|
source 'https://rubygems.org'
|
2
2
|
|
3
|
-
gem 'iqvoc', '~> 4.
|
4
|
-
|
5
|
-
|
6
|
-
gem 'awesome_print'
|
3
|
+
gem 'iqvoc', '~> 4.6.0', :github => 'innoq/iqvoc'
|
4
|
+
|
5
|
+
group :development, :test do
|
6
|
+
gem 'awesome_print'
|
7
|
+
gem 'spring'
|
8
|
+
gem 'pry-rails'
|
9
|
+
|
10
|
+
platforms :ruby do
|
11
|
+
gem 'mysql2'
|
12
|
+
gem 'sqlite3'
|
13
|
+
end
|
14
|
+
platforms :jruby do
|
15
|
+
gem 'activerecord-jdbcsqlite3-adapter'
|
16
|
+
gem 'activerecord-jdbcmysql-adapter'
|
17
|
+
end
|
18
|
+
end
|
7
19
|
|
8
20
|
group :test do
|
9
21
|
gem 'capybara'
|
10
|
-
gem '
|
11
|
-
gem 'turn'
|
12
|
-
gem 'webmock'
|
22
|
+
gem 'poltergeist', '~> 1.5.0'
|
13
23
|
end
|
data/Gemfile.lock
CHANGED
@@ -1,118 +1,144 @@
|
|
1
1
|
GIT
|
2
2
|
remote: git://github.com/innoq/iqvoc.git
|
3
|
-
revision:
|
3
|
+
revision: fe2356c73c1acc920c56649d33bff8ddb9185aaf
|
4
4
|
specs:
|
5
|
-
iqvoc (4.
|
5
|
+
iqvoc (4.6.0)
|
6
6
|
apipie-rails
|
7
|
-
authlogic
|
8
|
-
bootstrap-sass (~>
|
7
|
+
authlogic (~> 3.4.2)
|
8
|
+
bootstrap-sass (~> 3.1.1.0)
|
9
|
+
bootstrap_form (~> 2.1.1)
|
9
10
|
bundler
|
10
|
-
|
11
|
+
cancancan
|
12
|
+
carrierwave
|
11
13
|
database_cleaner
|
12
|
-
delayed_job_active_record (~> 4.0.
|
14
|
+
delayed_job_active_record (~> 4.0.1)
|
13
15
|
faraday
|
16
|
+
faraday_middleware
|
14
17
|
font-awesome-rails
|
15
|
-
iq_rdf (>= 0.1.
|
18
|
+
iq_rdf (>= 0.1.15)
|
16
19
|
iq_triplestorage
|
17
20
|
json
|
18
|
-
kaminari
|
21
|
+
kaminari
|
22
|
+
kaminari-bootstrap (~> 3.0.1)
|
19
23
|
linkeddata
|
20
24
|
maruku
|
21
25
|
nokogiri
|
22
|
-
|
23
|
-
rails (~> 4.0.0)
|
26
|
+
rails (~> 4.1.0)
|
24
27
|
rails_autolink
|
25
|
-
sass-rails (~> 4.0.
|
26
|
-
simple_form
|
28
|
+
sass-rails (~> 4.0.2)
|
27
29
|
uglifier (>= 1.3.0)
|
28
30
|
|
29
31
|
GEM
|
30
32
|
remote: https://rubygems.org/
|
31
33
|
specs:
|
32
|
-
actionmailer (4.
|
33
|
-
actionpack (= 4.
|
34
|
+
actionmailer (4.1.1)
|
35
|
+
actionpack (= 4.1.1)
|
36
|
+
actionview (= 4.1.1)
|
34
37
|
mail (~> 2.5.4)
|
35
|
-
actionpack (4.
|
36
|
-
|
37
|
-
|
38
|
-
erubis (~> 2.7.0)
|
38
|
+
actionpack (4.1.1)
|
39
|
+
actionview (= 4.1.1)
|
40
|
+
activesupport (= 4.1.1)
|
39
41
|
rack (~> 1.5.2)
|
40
42
|
rack-test (~> 0.6.2)
|
41
|
-
|
42
|
-
activesupport (= 4.
|
43
|
-
builder (~> 3.1
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
43
|
+
actionview (4.1.1)
|
44
|
+
activesupport (= 4.1.1)
|
45
|
+
builder (~> 3.1)
|
46
|
+
erubis (~> 2.7.0)
|
47
|
+
activemodel (4.1.1)
|
48
|
+
activesupport (= 4.1.1)
|
49
|
+
builder (~> 3.1)
|
50
|
+
activerecord (4.1.1)
|
51
|
+
activemodel (= 4.1.1)
|
52
|
+
activesupport (= 4.1.1)
|
53
|
+
arel (~> 5.0.0)
|
54
|
+
activerecord-jdbc-adapter (1.3.7)
|
55
|
+
activerecord (>= 2.2)
|
56
|
+
activerecord-jdbcmysql-adapter (1.3.7)
|
57
|
+
activerecord-jdbc-adapter (~> 1.3.7)
|
58
|
+
jdbc-mysql (>= 5.1.22)
|
59
|
+
activerecord-jdbcsqlite3-adapter (1.3.7)
|
60
|
+
activerecord-jdbc-adapter (~> 1.3.7)
|
61
|
+
jdbc-sqlite3 (~> 3.7.2)
|
62
|
+
activesupport (4.1.1)
|
63
|
+
i18n (~> 0.6, >= 0.6.9)
|
64
|
+
json (~> 1.7, >= 1.7.7)
|
65
|
+
minitest (~> 5.1)
|
54
66
|
thread_safe (~> 0.1)
|
55
|
-
tzinfo (~>
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
arel (4.0.2)
|
61
|
-
atomic (1.1.14)
|
62
|
-
atomic (1.1.14-java)
|
63
|
-
authlogic (3.3.0)
|
67
|
+
tzinfo (~> 1.1)
|
68
|
+
apipie-rails (0.2.6)
|
69
|
+
json
|
70
|
+
arel (5.0.1.20140414130214)
|
71
|
+
authlogic (3.4.3)
|
64
72
|
activerecord (>= 3.2)
|
65
73
|
activesupport (>= 3.2)
|
74
|
+
request_store (~> 1.0)
|
75
|
+
scrypt (~> 1.2)
|
66
76
|
awesome_print (1.2.0)
|
67
|
-
bootstrap-sass (
|
77
|
+
bootstrap-sass (3.1.1.1)
|
68
78
|
sass (~> 3.2)
|
69
|
-
|
70
|
-
|
71
|
-
|
79
|
+
bootstrap_form (2.1.1)
|
80
|
+
builder (3.2.2)
|
81
|
+
cancancan (1.9.2)
|
82
|
+
capybara (2.3.0)
|
72
83
|
mime-types (>= 1.16)
|
73
84
|
nokogiri (>= 1.3.3)
|
74
85
|
rack (>= 1.0.0)
|
75
86
|
rack-test (>= 0.5.4)
|
76
87
|
xpath (~> 2.0)
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
88
|
+
carrierwave (0.10.0)
|
89
|
+
activemodel (>= 3.2.0)
|
90
|
+
activesupport (>= 3.2.0)
|
91
|
+
json (>= 1.7)
|
92
|
+
mime-types (>= 1.16)
|
93
|
+
cliver (0.3.2)
|
94
|
+
coderay (1.1.0)
|
95
|
+
database_cleaner (1.3.0)
|
96
|
+
delayed_job (4.0.4)
|
97
|
+
activesupport (>= 3.0, < 4.2)
|
98
|
+
delayed_job_active_record (4.0.2)
|
99
|
+
activerecord (>= 3.0, < 4.2)
|
84
100
|
delayed_job (>= 3.0, < 4.1)
|
85
|
-
ebnf (0.3.
|
86
|
-
|
87
|
-
|
88
|
-
|
101
|
+
ebnf (0.3.6)
|
102
|
+
haml (~> 4.0)
|
103
|
+
rdf (~> 1.1)
|
104
|
+
sxp (~> 0.1, >= 0.1.3)
|
105
|
+
equivalent-xml (0.5.1)
|
89
106
|
nokogiri (>= 1.4.3)
|
90
107
|
erubis (2.7.0)
|
91
|
-
execjs (2.
|
92
|
-
factory_girl (4.3.0)
|
93
|
-
activesupport (>= 3.0.0)
|
108
|
+
execjs (2.2.2)
|
94
109
|
faraday (0.9.0)
|
95
110
|
multipart-post (>= 1.2, < 3)
|
96
|
-
|
111
|
+
faraday_middleware (0.9.1)
|
112
|
+
faraday (>= 0.7.4, < 0.10)
|
113
|
+
ffi (1.9.3)
|
114
|
+
ffi (1.9.3-java)
|
115
|
+
ffi-compiler (0.1.3)
|
116
|
+
ffi (>= 1.0.0)
|
117
|
+
rake
|
118
|
+
font-awesome-rails (4.2.0.0)
|
97
119
|
railties (>= 3.2, < 5.0)
|
98
120
|
haml (4.0.5)
|
99
121
|
tilt
|
100
122
|
hike (1.2.3)
|
101
|
-
htmlentities (4.3.
|
123
|
+
htmlentities (4.3.2)
|
102
124
|
i18n (0.6.9)
|
103
|
-
iq_rdf (0.1.
|
125
|
+
iq_rdf (0.1.15)
|
104
126
|
activesupport
|
105
127
|
builder
|
106
128
|
bundler
|
107
129
|
iq_triplestorage (0.2.2)
|
130
|
+
jdbc-mysql (5.1.30)
|
131
|
+
jdbc-sqlite3 (3.7.2.1)
|
108
132
|
json (1.8.1)
|
109
133
|
json (1.8.1-java)
|
110
|
-
json-ld (1.1.
|
111
|
-
rdf (>= 1.
|
112
|
-
kaminari (0.
|
134
|
+
json-ld (1.1.7)
|
135
|
+
rdf (~> 1.1, >= 1.1.4)
|
136
|
+
kaminari (0.16.1)
|
113
137
|
actionpack (>= 3.0.0)
|
114
138
|
activesupport (>= 3.0.0)
|
115
|
-
|
139
|
+
kaminari-bootstrap (3.0.1)
|
140
|
+
kaminari (>= 0.13.0)
|
141
|
+
rails
|
116
142
|
linkeddata (1.1.1)
|
117
143
|
equivalent-xml (>= 0.4.0)
|
118
144
|
json-ld (>= 1.1.1)
|
@@ -133,125 +159,141 @@ GEM
|
|
133
159
|
mail (2.5.4)
|
134
160
|
mime-types (~> 1.16)
|
135
161
|
treetop (~> 1.4.8)
|
136
|
-
maruku (0.7.
|
162
|
+
maruku (0.7.2)
|
163
|
+
method_source (0.8.2)
|
137
164
|
mime-types (1.25.1)
|
138
|
-
mini_portile (0.
|
139
|
-
minitest (
|
140
|
-
multi_json (1.
|
165
|
+
mini_portile (0.6.0)
|
166
|
+
minitest (5.3.4)
|
167
|
+
multi_json (1.10.1)
|
141
168
|
multipart-post (2.0.0)
|
142
|
-
mysql2 (0.3.
|
169
|
+
mysql2 (0.3.16)
|
143
170
|
net-http-persistent (2.9.4)
|
144
|
-
nokogiri (1.6.1)
|
145
|
-
mini_portile (
|
146
|
-
nokogiri (1.6.1-java)
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
171
|
+
nokogiri (1.6.2.1)
|
172
|
+
mini_portile (= 0.6.0)
|
173
|
+
nokogiri (1.6.2.1-java)
|
174
|
+
poltergeist (1.5.1)
|
175
|
+
capybara (~> 2.1)
|
176
|
+
cliver (~> 0.3.1)
|
177
|
+
multi_json (~> 1.0)
|
178
|
+
websocket-driver (>= 0.2.0)
|
179
|
+
polyglot (0.3.5)
|
180
|
+
pry (0.9.12.6)
|
181
|
+
coderay (~> 1.0)
|
182
|
+
method_source (~> 0.8)
|
183
|
+
slop (~> 3.4)
|
184
|
+
pry (0.9.12.6-java)
|
185
|
+
coderay (~> 1.0)
|
186
|
+
method_source (~> 0.8)
|
187
|
+
slop (~> 3.4)
|
188
|
+
spoon (~> 0.0)
|
189
|
+
pry-rails (0.3.2)
|
190
|
+
pry (>= 0.9.10)
|
151
191
|
rack (1.5.2)
|
152
192
|
rack-test (0.6.2)
|
153
193
|
rack (>= 1.0)
|
154
|
-
rails (4.
|
155
|
-
actionmailer (= 4.
|
156
|
-
actionpack (= 4.
|
157
|
-
|
158
|
-
|
194
|
+
rails (4.1.1)
|
195
|
+
actionmailer (= 4.1.1)
|
196
|
+
actionpack (= 4.1.1)
|
197
|
+
actionview (= 4.1.1)
|
198
|
+
activemodel (= 4.1.1)
|
199
|
+
activerecord (= 4.1.1)
|
200
|
+
activesupport (= 4.1.1)
|
159
201
|
bundler (>= 1.3.0, < 2.0)
|
160
|
-
railties (= 4.
|
161
|
-
sprockets-rails (~> 2.0
|
162
|
-
rails_autolink (1.1.
|
202
|
+
railties (= 4.1.1)
|
203
|
+
sprockets-rails (~> 2.0)
|
204
|
+
rails_autolink (1.1.6)
|
163
205
|
rails (> 3.1)
|
164
|
-
railties (4.
|
165
|
-
actionpack (= 4.
|
166
|
-
activesupport (= 4.
|
206
|
+
railties (4.1.1)
|
207
|
+
actionpack (= 4.1.1)
|
208
|
+
activesupport (= 4.1.1)
|
167
209
|
rake (>= 0.8.7)
|
168
210
|
thor (>= 0.18.1, < 2.0)
|
169
|
-
rake (10.
|
170
|
-
rdf (1.1.
|
211
|
+
rake (10.3.2)
|
212
|
+
rdf (1.1.6)
|
171
213
|
rdf-aggregate-repo (1.1.0)
|
172
214
|
rdf (>= 1.1)
|
173
215
|
rdf-isomorphic (1.1.0)
|
174
216
|
rdf (>= 1.1)
|
175
217
|
rdf-json (1.1.0)
|
176
218
|
rdf (>= 1.1.0)
|
177
|
-
rdf-microdata (1.1.
|
178
|
-
htmlentities (
|
179
|
-
nokogiri (
|
180
|
-
rdf (
|
181
|
-
rdf-xsd (
|
182
|
-
rdf-n3 (1.1.
|
183
|
-
rdf (>= 1.1)
|
184
|
-
rdf-rdfa (1.1.
|
185
|
-
haml (
|
186
|
-
htmlentities (
|
187
|
-
rdf (>= 1.1.
|
188
|
-
rdf-xsd (
|
189
|
-
rdf-rdfxml (1.1.
|
190
|
-
|
191
|
-
rdf
|
192
|
-
rdf-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
rdf
|
219
|
+
rdf-microdata (1.1.2)
|
220
|
+
htmlentities (~> 4.3)
|
221
|
+
nokogiri (~> 1.6)
|
222
|
+
rdf (~> 1.1)
|
223
|
+
rdf-xsd (~> 1.1)
|
224
|
+
rdf-n3 (1.1.2)
|
225
|
+
rdf (~> 1.1, >= 1.1.5)
|
226
|
+
rdf-rdfa (1.1.4.1)
|
227
|
+
haml (~> 4.0)
|
228
|
+
htmlentities (~> 4.3)
|
229
|
+
rdf (~> 1.1, >= 1.1.6)
|
230
|
+
rdf-xsd (~> 1.1)
|
231
|
+
rdf-rdfxml (1.1.3)
|
232
|
+
htmlentities (~> 4.3)
|
233
|
+
rdf (~> 1.1, >= 1.1.6)
|
234
|
+
rdf-rdfa (~> 1.1, >= 1.1.4.1)
|
235
|
+
rdf-xsd (~> 1.1)
|
236
|
+
rdf-trig (1.1.3.1)
|
237
|
+
ebnf (~> 0.3, >= 0.3.5)
|
238
|
+
rdf (~> 1.1, >= 1.1.2.1)
|
239
|
+
rdf-turtle (~> 1.1, >= 1.1.3)
|
197
240
|
rdf-trix (1.1.0)
|
198
241
|
rdf (>= 1.1)
|
199
|
-
rdf-turtle (1.1.
|
200
|
-
ebnf (>= 0.3.
|
201
|
-
rdf (
|
202
|
-
rdf-xsd (1.1.
|
203
|
-
rdf (
|
204
|
-
|
205
|
-
sass (3.2.
|
206
|
-
sass-rails (4.0.
|
242
|
+
rdf-turtle (1.1.4)
|
243
|
+
ebnf (~> 0.3, >= 0.3.6)
|
244
|
+
rdf (~> 1.1, >= 1.1.4)
|
245
|
+
rdf-xsd (1.1.2)
|
246
|
+
rdf (~> 1.1)
|
247
|
+
request_store (1.1.0)
|
248
|
+
sass (3.2.19)
|
249
|
+
sass-rails (4.0.3)
|
207
250
|
railties (>= 4.0.0, < 5.0)
|
208
|
-
sass (
|
209
|
-
sprockets
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
rdf
|
219
|
-
rdf-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
net-http-persistent (
|
225
|
-
rdf (
|
226
|
-
|
251
|
+
sass (~> 3.2.0)
|
252
|
+
sprockets (~> 2.8, <= 2.11.0)
|
253
|
+
sprockets-rails (~> 2.0)
|
254
|
+
scrypt (1.2.1)
|
255
|
+
ffi-compiler (>= 0.0.2)
|
256
|
+
rake
|
257
|
+
slop (3.5.0)
|
258
|
+
sparql (1.1.4)
|
259
|
+
builder (~> 3.0)
|
260
|
+
ebnf (~> 0.3, >= 0.3.5)
|
261
|
+
rdf (~> 1.1, >= 1.1.4)
|
262
|
+
rdf-aggregate-repo (~> 1.1, >= 1.1.0)
|
263
|
+
rdf-xsd (~> 1.1)
|
264
|
+
sparql-client (~> 1.1)
|
265
|
+
sxp (~> 0.1)
|
266
|
+
sparql-client (1.1.3.1)
|
267
|
+
net-http-persistent (~> 2.9)
|
268
|
+
rdf (~> 1.1)
|
269
|
+
spoon (0.0.4)
|
270
|
+
ffi
|
271
|
+
spring (1.1.3)
|
272
|
+
sprockets (2.11.0)
|
227
273
|
hike (~> 1.2)
|
228
274
|
multi_json (~> 1.0)
|
229
275
|
rack (~> 1.0)
|
230
276
|
tilt (~> 1.1, != 1.3.0)
|
231
|
-
sprockets-rails (2.0
|
277
|
+
sprockets-rails (2.2.0)
|
232
278
|
actionpack (>= 3.0)
|
233
279
|
activesupport (>= 3.0)
|
234
|
-
sprockets (
|
235
|
-
sqlite3 (1.3.
|
280
|
+
sprockets (>= 2.8, < 4.0)
|
281
|
+
sqlite3 (1.3.9)
|
236
282
|
sxp (0.1.5)
|
237
|
-
thor (0.
|
238
|
-
thread_safe (0.
|
239
|
-
|
240
|
-
thread_safe (0.1.3-java)
|
241
|
-
atomic
|
283
|
+
thor (0.19.1)
|
284
|
+
thread_safe (0.3.4)
|
285
|
+
thread_safe (0.3.4-java)
|
242
286
|
tilt (1.4.1)
|
243
287
|
treetop (1.4.15)
|
244
288
|
polyglot
|
245
289
|
polyglot (>= 0.3.1)
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
uglifier (2.4.0)
|
290
|
+
tzinfo (1.2.1)
|
291
|
+
thread_safe (~> 0.1)
|
292
|
+
uglifier (2.5.3)
|
250
293
|
execjs (>= 0.3.0)
|
251
294
|
json (>= 1.8.0)
|
252
|
-
|
253
|
-
|
254
|
-
crack (>= 0.3.2)
|
295
|
+
websocket-driver (0.3.3)
|
296
|
+
websocket-driver (0.3.3-java)
|
255
297
|
xpath (2.0.0)
|
256
298
|
nokogiri (~> 1.3)
|
257
299
|
|
@@ -260,11 +302,13 @@ PLATFORMS
|
|
260
302
|
ruby
|
261
303
|
|
262
304
|
DEPENDENCIES
|
305
|
+
activerecord-jdbcmysql-adapter
|
306
|
+
activerecord-jdbcsqlite3-adapter
|
263
307
|
awesome_print
|
264
308
|
capybara
|
265
|
-
|
266
|
-
iqvoc (~> 4.3.0)!
|
309
|
+
iqvoc (~> 4.6.0)!
|
267
310
|
mysql2
|
311
|
+
poltergeist (~> 1.5.0)
|
312
|
+
pry-rails
|
313
|
+
spring
|
268
314
|
sqlite3
|
269
|
-
turn
|
270
|
-
webmock
|
data/README.md
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
[![Build Status](https://travis-ci.org/innoq/iqvoc_skosxl.svg?branch=master)](https://travis-ci.org/innoq/iqvoc_skosxl)
|
2
|
+
|
1
3
|
# Iqvoc::SKOSXL
|
2
4
|
|
3
5
|
This is the iQvoc SKOS-XL extension. Use this in your Gemfile to add SKOS-XL features to iQvoc.
|
@@ -24,3 +26,9 @@ Operate Iqvoc::SKOSXL and Iqvoc as Engines running in a custom App.
|
|
24
26
|
`rake iqvoc:db:migrate_all`
|
25
27
|
3. Populate Iqvoc seeds:
|
26
28
|
`rake iqvoc:db:seed_all`
|
29
|
+
|
30
|
+
## License
|
31
|
+
|
32
|
+
Copyright 2014 innoQ Deutschland GmbH
|
33
|
+
|
34
|
+
Licensed under the Apache License, Version 2.0
|
@@ -0,0 +1 @@
|
|
1
|
+
@import 'iqvoc_skosxl/entity_select';
|