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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 82a0156fdf8e39b37d70a3c3b1c14080cbb95bad
4
- data.tar.gz: 4a4b1322de078979b37d0463371a0e73c408ff45
3
+ metadata.gz: 9b20e086dd5b336a7cef14cacc25abf882887d64
4
+ data.tar.gz: 7ff39ab68606eef026a85039a95a6fefdc4c585c
5
5
  SHA512:
6
- metadata.gz: 927d3e18556a622c48e7a888878fc9419792a0c24207863797746b6cf44f3950579a7c8f068805130ce1e0b578801870d09a72e0ce63485e4c71a2ad9b4b1d8b
7
- data.tar.gz: a4a10a435810f450de2ca2d81db4b44ad61d728afb904f5329c111b158f22a6b474534288dd3a3d51b19e9b69d4389c2b10421f2aecafc7040387db21b765c8c
6
+ metadata.gz: b76a926f7989ad6aa08ff009f3758870356d5ecd96c82b28ef987d8ea4da43c72f5436a1bff72c2bec81d48d0fe344ebd344df1483f636b0dc0de4a17a93b785
7
+ data.tar.gz: 001eec4fcafb350633261b99a6b0a2a1ea73186b6dbae877f92ef67b4a2fe350a010ddc82ee8fa414941369dd8ea2733e1f319fd43cad25c5b6ae827effc11e0
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.3.9
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: 'Bjond registration was successfully created.'
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: 'Bjond registration was successfully updated.'
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: 'Bjond registration was successfully destroyed.'
59
+ redirect_to bjond_registrations_url, notice: 'Bjönd registration was successfully destroyed.'
60
60
  end
61
61
 
62
62
  private
@@ -1,5 +1,5 @@
1
1
  <div class="edit-registrations">
2
- <h1 class="app-info-header">Editing Bjond Registration</h1>
2
+ <h1 class="app-info-header">Editing Bjönd Registration</h1>
3
3
 
4
4
  <%= render 'form' %>
5
5
 
@@ -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 Bjond Registrations</div>
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 Bjond registration', new_bjond_registration_path %>
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 Bjond Registration</h1>
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 Bjond"%>
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 Bjond 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) %>.
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
- Bjond Services associated with this Registration
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.9 ruby lib
5
+ # stub: bjond-api 0.3.10 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
- s.name = "bjond-api".freeze
9
- s.version = "0.3.9"
8
+ s.name = "bjond-api"
9
+ s.version = "0.3.10"
10
10
 
11
- s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
12
- s.require_paths = ["lib".freeze]
13
- s.authors = ["Blake Rego".freeze]
14
- s.date = "2016-12-20"
15
- s.description = "Rails engine that provides communication between Bj\u{f6}nd Server Core and a client app.".freeze
16
- s.email = "blake.rego@bjondinc.com".freeze
17
- s.executables = ["rails".freeze]
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".freeze
88
- s.licenses = ["GPL".freeze]
89
- s.rubygems_version = "2.6.7".freeze
90
- s.summary = "Interface that facilitates communication with Bj\u{f6}nd servers.".freeze
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>.freeze, [">= 4.2.4", "~> 4.2"])
97
- s.add_development_dependency(%q<jeweler>.freeze, [">= 2.0.1", "~> 2.0"])
98
- s.add_runtime_dependency(%q<faraday>.freeze, ["~> 0.9.2"])
99
- s.add_runtime_dependency(%q<syruppay_jose>.freeze, ["~> 1.0"])
100
- s.add_runtime_dependency(%q<attr_encrypted>.freeze, [">= 3.0.3", "~> 3.0"])
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>.freeze, [">= 4.2.4", "~> 4.2"])
103
- s.add_dependency(%q<jeweler>.freeze, [">= 2.0.1", "~> 2.0"])
104
- s.add_dependency(%q<faraday>.freeze, ["~> 0.9.2"])
105
- s.add_dependency(%q<syruppay_jose>.freeze, ["~> 1.0"])
106
- s.add_dependency(%q<attr_encrypted>.freeze, [">= 3.0.3", "~> 3.0"])
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>.freeze, [">= 4.2.4", "~> 4.2"])
110
- s.add_dependency(%q<jeweler>.freeze, [">= 2.0.1", "~> 2.0"])
111
- s.add_dependency(%q<faraday>.freeze, ["~> 0.9.2"])
112
- s.add_dependency(%q<syruppay_jose>.freeze, ["~> 1.0"])
113
- s.add_dependency(%q<attr_encrypted>.freeze, [">= 3.0.3", "~> 3.0"])
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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bjond-app",
3
3
  "authors": ["Blake Rego blake.rego@bjondinc.com"],
4
- "description": "Bjond app",
4
+ "description": "Bjönd app",
5
5
  "dependencies": {
6
6
  "angular-mocks": "1.3.6",
7
7
  "jquery": "~2.x",
@@ -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 = 'Bjond, Inc.'
6
- integration_app.name = 'Bjond Pokitdok API'
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.9
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-20 00:00:00.000000000 Z
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.6.7
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.