iqvoc_skosxl 2.8.0 → 2.8.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 845ec6c18d4da7e36575f42941e51b2d188e7956
4
- data.tar.gz: 4f982396806e732eece6fe4b21afe6bdacf133b0
3
+ metadata.gz: 8ff88b0372ad6e88dfdb28f2bbdd831237bbca06
4
+ data.tar.gz: 4c72323bf71ff134b74bcbf5deabed07b8858673
5
5
  SHA512:
6
- metadata.gz: 3e7118156fbf98bba49249924b1913c5e1772a295821c167bd2a763f4b765ff19dfb7f1f7c34a3225304bb01c5637e9e24d62e24859e90f37bacf6fa777b2901
7
- data.tar.gz: 1a04a05d4d693169a0d183e7f0bee609a00a7d66cc40d54068624b4f54ae6931d53b8571757e34cf33e169e9f1db9086ff3b98053ce8215da63c6add80138eb5
6
+ metadata.gz: 0d4891b95b4011d3c17a8b5e734cd46dfa88aabda122a77fa84ebda52dd7992f65860ffec74330710c046ce8882c3b66ade9ee002f34e0b9abf09a8535b0796c
7
+ data.tar.gz: 9f68dc5caafd49b6fc13de40db9c86dfd487a60195d4a4e3eb0557e6931b179d4b5b03dec0b06e44d2ea8102953c9510a439646876b31df75dcad124159f5906
data/Gemfile.lock CHANGED
@@ -1,6 +1,6 @@
1
1
  GIT
2
2
  remote: git://github.com/innoq/iqvoc.git
3
- revision: 872456feda103f7f3df4e771ab1ba608a985cac6
3
+ revision: 9d308319f98735b34375501cb226628d0abbca2b
4
4
  branch: master
5
5
  specs:
6
6
  iqvoc (4.10.0)
@@ -367,4 +367,4 @@ DEPENDENCIES
367
367
  sqlite3
368
368
 
369
369
  BUNDLED WITH
370
- 1.11.2
370
+ 1.12.4
@@ -1,11 +1,16 @@
1
- <% fieldname = "label[inline_#{klass.name.to_relation_name}]" %>
2
- <%= f.form_group nil, :label => { :text => klass.model_name.human(:count => 2) } do %>
3
- <%= text_field_tag fieldname, label.send("inline_#{klass.name.to_relation_name}"),
4
- :id => klass.name.to_relation_name,
5
- :class => "entity_select",
6
- :"data-query-url" => labels_path(:format => :json),
7
- :"data-entity-uri" => label_path("{id}"),
8
- :"data-entities" => Iqvoc::XLLabel.base_class.editor_selectable.
9
- by_origin(label.send("inline_#{klass.name.to_relation_name}")).
10
- map { |l| label_widget_data(l) }.to_json %>
11
- <% end %>
1
+ <% data_entities = Iqvoc::XLLabel.base_class.editor_selectable
2
+ .by_origin(label.send("inline_#{klass.name.to_relation_name}"))
3
+ .map { |l| label_widget_data(l) }.to_json
4
+ %>
5
+
6
+ <%= f.text_field "inline_#{klass.name.to_relation_name}",
7
+ label: klass.model_name.human(:count => 2),
8
+ value: label.send("inline_#{klass.name.to_relation_name}").join(','),
9
+ id: klass.name.to_relation_name,
10
+ class: "entity_select",
11
+ data: {
12
+ 'query-url': labels_path(:format => :json),
13
+ 'entity-uri': label_path("{id}"),
14
+ 'entities': data_entities
15
+ }
16
+ %>
@@ -1,5 +1,5 @@
1
1
  module Iqvoc
2
2
  module SKOSXL
3
- VERSION = "2.8.0"
3
+ VERSION = "2.8.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: iqvoc_skosxl
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.8.0
4
+ version: 2.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robert Glaser
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2016-05-19 00:00:00.000000000 Z
13
+ date: 2016-06-21 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: iqvoc
@@ -128,7 +128,6 @@ files:
128
128
  - lib/iqvoc/skosxl/version.rb
129
129
  - lib/iqvoc/xllabel.rb
130
130
  - lib/iqvoc_skosxl.rb
131
- - lib/tasks/release.rake
132
131
  - test/controllers/routing_test.rb
133
132
  - test/fixtures/hobbies.nt
134
133
  - test/integration/concept_label_language_test.rb
@@ -1,15 +0,0 @@
1
- # namespace :release do
2
- # desc 'Builds a new .gem release'
3
- # task :build => :environment do
4
- # system 'rm iqvoc_skosxl-*.gem'
5
- # system 'gem build iqvoc_skosxl.gemspec'
6
- # end
7
- #
8
- # desc 'Builds, tags and pushes a new iqvoc_skosxl release to Rubygems'
9
- # task :push => :environment do
10
- # Rake::Task['release:build'].invoke
11
- # system %(git tag `grep VERSION lib/iqvoc/skosxl/version.rb | sed -e 's/.*= /v/' -e 's/"//g'`)
12
- # system 'git push origin master --tags'
13
- # system 'gem push iqvoc_skosxl-*.gem'
14
- # end
15
- # end