bjond-api 0.3.1 → 0.3.2
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aec8fffd13d372a603b382de0c6aeae1c73c4a7b
|
4
|
+
data.tar.gz: 20df01f0bdad2456c2f9a77893b79c2210a8c439
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a9a808e736f95a18cf9a0ee957af7fe81c2674b95383b1c6f09fb04de50cecbc4b5eb041a4aba2e55d96ac41c91ce6953d77b268443383f4c2c5f7f63ecdf9e0
|
7
|
+
data.tar.gz: fdd587cba74e71e52d040cf1bcb131ca9b7e6ae4145f21ccc6619edd9337908d9b1bf6f72ec259559cb73b5607867156d49cd3c3b27491fe2a3ce10d04921b78
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.3.
|
1
|
+
0.3.2
|
@@ -1,6 +1,10 @@
|
|
1
1
|
<div class="show-registrations" ng-controller="registrationsController">
|
2
2
|
<p id="notice"><%= notice %></p>
|
3
3
|
|
4
|
+
<h3>
|
5
|
+
Registration Info
|
6
|
+
</h3>
|
7
|
+
|
4
8
|
<p>
|
5
9
|
<strong>Server:</strong>
|
6
10
|
<%= @bjond_registration.server %>
|
@@ -31,6 +35,11 @@
|
|
31
35
|
|
32
36
|
<% end %>
|
33
37
|
|
38
|
+
<p>
|
39
|
+
<strong>ID:</strong>
|
40
|
+
<%= @bjond_registration.id %>
|
41
|
+
</p>
|
42
|
+
|
34
43
|
|
35
44
|
<button class="btn register" ng-click="register(<%= @bjond_registration.id %>)">
|
36
45
|
Update Registration
|
@@ -39,4 +48,29 @@
|
|
39
48
|
<%= link_to 'Edit', edit_bjond_registration_path(@bjond_registration) %> |
|
40
49
|
<%= link_to 'Back', bjond_registrations_path %>
|
41
50
|
|
51
|
+
|
52
|
+
<%- if @services.count > 0 %>
|
53
|
+
<h3>
|
54
|
+
Bjond Services associated with this Registration
|
55
|
+
</h3>
|
56
|
+
|
57
|
+
<%- @services.each do |service| %>
|
58
|
+
<div class="bjond-service">
|
59
|
+
<p>
|
60
|
+
<strong>ID:</strong>
|
61
|
+
<%= service.id %>
|
62
|
+
</p>
|
63
|
+
<p>
|
64
|
+
<strong>Group ID:</strong>
|
65
|
+
<%= service.group_id %>
|
66
|
+
</p>
|
67
|
+
|
68
|
+
<p>
|
69
|
+
<strong>Endpoint:</strong>
|
70
|
+
<%= service.endpoint %>
|
71
|
+
</p>
|
72
|
+
|
73
|
+
</div>
|
74
|
+
<% end %>
|
75
|
+
<% end %>
|
42
76
|
</div>
|
data/bjond-api.gemspec
CHANGED
@@ -2,11 +2,11 @@
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
|
-
# stub: bjond-api 0.3.
|
5
|
+
# stub: bjond-api 0.3.2 ruby lib
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
8
|
s.name = "bjond-api".freeze
|
9
|
-
s.version = "0.3.
|
9
|
+
s.version = "0.3.2"
|
10
10
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
12
12
|
s.require_paths = ["lib".freeze]
|