stormpath-rails 2.0.0 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/README.md +1 -1
- data/app/views/stormpath/rails/login/_form.html.erb +5 -1
- data/lib/stormpath/rails/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 45f0f3e26f963efea126aa26e6d1f772fa29709a
|
|
4
|
+
data.tar.gz: 42f3d96fe8d36ed4225de3c9db3a94ed4dbf910b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 757faf0f3e190f760879704d14fe4b76a0e3ca7f64ef415c5b00083aa427b6fa5ffa4ae369f442c981ee9e95f94e1054be48c1af73cbe894fda9acb4733f8e83
|
|
7
|
+
data.tar.gz: 20edb0a2fff274d844b527513a6b0330a7d431155ea32f9ea8d55608d813a8326cec34efe089dce317dd5db85ca936f85d96fdb5d361f6eca315c5b452e10550
|
data/CHANGELOG.md
ADDED
data/README.md
CHANGED
|
@@ -17,7 +17,7 @@ Add the stormpath-rails integration gem to your Gemfile.
|
|
|
17
17
|
Stormpath is currently in beta so it is necessary to include the gem version:
|
|
18
18
|
|
|
19
19
|
```ruby
|
|
20
|
-
gem 'stormpath-rails', '~> 2.0.0
|
|
20
|
+
gem 'stormpath-rails', '~> 2.0.0'
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
Bundle the Gemfile
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
<div class="email-password-area col-xs-12 <%= box_class %>">
|
|
2
2
|
<div class="header">
|
|
3
|
-
|
|
3
|
+
<% if Stormpath::Rails.config.web.register.enabled %>
|
|
4
|
+
<span>Log in or <%= link_to "Create Account", new_register_path %></span>
|
|
5
|
+
<% else %>
|
|
6
|
+
<span>Log in</span>
|
|
7
|
+
<% end %>
|
|
4
8
|
</div>
|
|
5
9
|
|
|
6
10
|
<% if flash[:error] %>
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: stormpath-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nenad Nikolic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-08-
|
|
11
|
+
date: 2016-08-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: stormpath-sdk
|
|
@@ -105,6 +105,7 @@ files:
|
|
|
105
105
|
- ".rspec"
|
|
106
106
|
- ".rubocop.yml"
|
|
107
107
|
- ".travis.yml"
|
|
108
|
+
- CHANGELOG.md
|
|
108
109
|
- Gemfile
|
|
109
110
|
- README.md
|
|
110
111
|
- Rakefile
|