bjond-api 0.3.9 → 0.3.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/app/controllers/bjond_registrations_controller.rb +3 -3
- data/app/views/bjond_registrations/edit.html.erb +1 -1
- data/app/views/bjond_registrations/index.html.erb +2 -2
- data/app/views/bjond_registrations/new.html.erb +2 -2
- data/app/views/bjond_registrations/show.html.erb +2 -2
- data/bjond-api.gemspec +29 -29
- data/bower.json +1 -1
- data/lib/generators/templates/initializer.rb +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9b20e086dd5b336a7cef14cacc25abf882887d64
|
4
|
+
data.tar.gz: 7ff39ab68606eef026a85039a95a6fefdc4c585c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b76a926f7989ad6aa08ff009f3758870356d5ecd96c82b28ef987d8ea4da43c72f5436a1bff72c2bec81d48d0fe344ebd344df1483f636b0dc0de4a17a93b785
|
7
|
+
data.tar.gz: 001eec4fcafb350633261b99a6b0a2a1ea73186b6dbae877f92ef67b4a2fe350a010ddc82ee8fa414941369dd8ea2733e1f319fd43cad25c5b6ae827effc11e0
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.3.
|
1
|
+
0.3.10
|
@@ -38,7 +38,7 @@ class BjondRegistrationsController < ApplicationController
|
|
38
38
|
|
39
39
|
|
40
40
|
if @bjond_registration.save
|
41
|
-
redirect_to @bjond_registration, notice: '
|
41
|
+
redirect_to @bjond_registration, notice: 'Bjönd registration was successfully created.'
|
42
42
|
else
|
43
43
|
render :new
|
44
44
|
end
|
@@ -47,7 +47,7 @@ class BjondRegistrationsController < ApplicationController
|
|
47
47
|
# PATCH/PUT /bjond_registrations/1
|
48
48
|
def update
|
49
49
|
if @bjond_registration.update(bjond_registration_params)
|
50
|
-
redirect_to @bjond_registration, notice: '
|
50
|
+
redirect_to @bjond_registration, notice: 'Bjönd registration was successfully updated.'
|
51
51
|
else
|
52
52
|
render :edit
|
53
53
|
end
|
@@ -56,7 +56,7 @@ class BjondRegistrationsController < ApplicationController
|
|
56
56
|
# DELETE /bjond_registrations/1
|
57
57
|
def destroy
|
58
58
|
@bjond_registration.destroy
|
59
|
-
redirect_to bjond_registrations_url, notice: '
|
59
|
+
redirect_to bjond_registrations_url, notice: 'Bjönd registration was successfully destroyed.'
|
60
60
|
end
|
61
61
|
|
62
62
|
private
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<div class="bjond-registration">
|
2
2
|
<p id="notice"><%= notice %></p>
|
3
3
|
|
4
|
-
<div class="bjond-app-title">Listing
|
4
|
+
<div class="bjond-app-title">Listing Bjönd Registrations</div>
|
5
5
|
|
6
6
|
|
7
7
|
<div class="bjond-registration-list">
|
@@ -34,7 +34,7 @@
|
|
34
34
|
<% end %>
|
35
35
|
|
36
36
|
<div class="new-registration-link">
|
37
|
-
<%= link_to 'New
|
37
|
+
<%= link_to 'New Bjönd registration', new_bjond_registration_path %>
|
38
38
|
</div>
|
39
39
|
|
40
40
|
</div>
|
@@ -1,6 +1,6 @@
|
|
1
1
|
<div class="new-registrations">
|
2
2
|
|
3
|
-
<h1 class="app-info-header">New
|
3
|
+
<h1 class="app-info-header">New Bjönd Registration</h1>
|
4
4
|
|
5
5
|
<%= form_for(@bjond_registration) do |f| %>
|
6
6
|
<% if @bjond_registration.errors.any? %>
|
@@ -27,7 +27,7 @@
|
|
27
27
|
</div>
|
28
28
|
|
29
29
|
<div class="actions">
|
30
|
-
<%= f.submit "Register with
|
30
|
+
<%= f.submit "Register with Bjönd"%>
|
31
31
|
</div>
|
32
32
|
<% end %>
|
33
33
|
|
@@ -30,7 +30,7 @@
|
|
30
30
|
</div>
|
31
31
|
<% else %>
|
32
32
|
<p class="not-found">
|
33
|
-
Please log in to the
|
33
|
+
Please log in to the Bjönd server and locate the encryption key. You must be a tenant administratior. You will find this information on the 'Develop' tab of the system settings. Once you find this information, <%= link_to 'add it here', edit_bjond_registration_path(@bjond_registration) %>.
|
34
34
|
</p>
|
35
35
|
|
36
36
|
<% end %>
|
@@ -51,7 +51,7 @@
|
|
51
51
|
|
52
52
|
<%- if @services.count > 0 %>
|
53
53
|
<h3>
|
54
|
-
|
54
|
+
Bjönd Services associated with this Registration
|
55
55
|
</h3>
|
56
56
|
|
57
57
|
<div class="bjond-info">
|
data/bjond-api.gemspec
CHANGED
@@ -2,19 +2,19 @@
|
|
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.10 ruby lib
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
|
-
s.name = "bjond-api"
|
9
|
-
s.version = "0.3.
|
8
|
+
s.name = "bjond-api"
|
9
|
+
s.version = "0.3.10"
|
10
10
|
|
11
|
-
s.required_rubygems_version = Gem::Requirement.new(">= 0"
|
12
|
-
s.require_paths = ["lib"
|
13
|
-
s.authors = ["Blake Rego"
|
14
|
-
s.date = "2016-12-
|
15
|
-
s.description = "Rails engine that provides communication between Bj\u{f6}nd Server Core and a client app."
|
16
|
-
s.email = "blake.rego@bjondinc.com"
|
17
|
-
s.executables = ["rails"
|
11
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
12
|
+
s.require_paths = ["lib"]
|
13
|
+
s.authors = ["Blake Rego"]
|
14
|
+
s.date = "2016-12-30"
|
15
|
+
s.description = "Rails engine that provides communication between Bj\u{f6}nd Server Core and a client app."
|
16
|
+
s.email = "blake.rego@bjondinc.com"
|
17
|
+
s.executables = ["rails"]
|
18
18
|
s.extra_rdoc_files = [
|
19
19
|
"README.rdoc"
|
20
20
|
]
|
@@ -84,33 +84,33 @@ Gem::Specification.new do |s|
|
|
84
84
|
"lib/generators/initializer_generator.rb",
|
85
85
|
"lib/generators/templates/initializer.rb"
|
86
86
|
]
|
87
|
-
s.homepage = "http://github.com/Bjond/bjond-integration-gem"
|
88
|
-
s.licenses = ["GPL"
|
89
|
-
s.rubygems_version = "2.
|
90
|
-
s.summary = "Interface that facilitates communication with Bj\u{f6}nd servers."
|
87
|
+
s.homepage = "http://github.com/Bjond/bjond-integration-gem"
|
88
|
+
s.licenses = ["GPL"]
|
89
|
+
s.rubygems_version = "2.5.1"
|
90
|
+
s.summary = "Interface that facilitates communication with Bj\u{f6}nd servers."
|
91
91
|
|
92
92
|
if s.respond_to? :specification_version then
|
93
93
|
s.specification_version = 4
|
94
94
|
|
95
95
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
96
|
-
s.add_runtime_dependency(%q<rails
|
97
|
-
s.add_development_dependency(%q<jeweler
|
98
|
-
s.add_runtime_dependency(%q<faraday
|
99
|
-
s.add_runtime_dependency(%q<syruppay_jose
|
100
|
-
s.add_runtime_dependency(%q<attr_encrypted
|
96
|
+
s.add_runtime_dependency(%q<rails>, [">= 4.2.4", "~> 4.2"])
|
97
|
+
s.add_development_dependency(%q<jeweler>, [">= 2.0.1", "~> 2.0"])
|
98
|
+
s.add_runtime_dependency(%q<faraday>, ["~> 0.9.2"])
|
99
|
+
s.add_runtime_dependency(%q<syruppay_jose>, ["~> 1.0"])
|
100
|
+
s.add_runtime_dependency(%q<attr_encrypted>, [">= 3.0.3", "~> 3.0"])
|
101
101
|
else
|
102
|
-
s.add_dependency(%q<rails
|
103
|
-
s.add_dependency(%q<jeweler
|
104
|
-
s.add_dependency(%q<faraday
|
105
|
-
s.add_dependency(%q<syruppay_jose
|
106
|
-
s.add_dependency(%q<attr_encrypted
|
102
|
+
s.add_dependency(%q<rails>, [">= 4.2.4", "~> 4.2"])
|
103
|
+
s.add_dependency(%q<jeweler>, [">= 2.0.1", "~> 2.0"])
|
104
|
+
s.add_dependency(%q<faraday>, ["~> 0.9.2"])
|
105
|
+
s.add_dependency(%q<syruppay_jose>, ["~> 1.0"])
|
106
|
+
s.add_dependency(%q<attr_encrypted>, [">= 3.0.3", "~> 3.0"])
|
107
107
|
end
|
108
108
|
else
|
109
|
-
s.add_dependency(%q<rails
|
110
|
-
s.add_dependency(%q<jeweler
|
111
|
-
s.add_dependency(%q<faraday
|
112
|
-
s.add_dependency(%q<syruppay_jose
|
113
|
-
s.add_dependency(%q<attr_encrypted
|
109
|
+
s.add_dependency(%q<rails>, [">= 4.2.4", "~> 4.2"])
|
110
|
+
s.add_dependency(%q<jeweler>, [">= 2.0.1", "~> 2.0"])
|
111
|
+
s.add_dependency(%q<faraday>, ["~> 0.9.2"])
|
112
|
+
s.add_dependency(%q<syruppay_jose>, ["~> 1.0"])
|
113
|
+
s.add_dependency(%q<attr_encrypted>, [">= 3.0.3", "~> 3.0"])
|
114
114
|
end
|
115
115
|
end
|
116
116
|
|
data/bower.json
CHANGED
@@ -2,8 +2,8 @@ require 'bjond-api'
|
|
2
2
|
|
3
3
|
integration_app = BjondApi::BjondAppDefinition.new
|
4
4
|
integration_app.id = '[your-guid-here]'
|
5
|
-
integration_app.author = '
|
6
|
-
integration_app.name = '
|
5
|
+
integration_app.author = 'Bjönd, Inc.'
|
6
|
+
integration_app.name = 'Bjönd Pokitdok API'
|
7
7
|
integration_app.description = 'Testing API functionality'
|
8
8
|
integration_app.iconURL = ''
|
9
9
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bjond-api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Blake Rego
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-12-
|
11
|
+
date: 2016-12-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -191,7 +191,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
191
191
|
version: '0'
|
192
192
|
requirements: []
|
193
193
|
rubyforge_project:
|
194
|
-
rubygems_version: 2.
|
194
|
+
rubygems_version: 2.5.1
|
195
195
|
signing_key:
|
196
196
|
specification_version: 4
|
197
197
|
summary: Interface that facilitates communication with Bjönd servers.
|