ember-auth-rails 4.0.1 → 4.0.2
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.
- data/README.md +18 -12
- data/ember-auth-rails.gemspec +2 -2
- data/lib/ember-auth/rails/version.rb +1 -1
- metadata +7 -7
data/README.md
CHANGED
@@ -5,28 +5,34 @@
|
|
5
5
|
|
6
6
|
## Installation
|
7
7
|
|
8
|
-
|
8
|
+
`Gemfile`:
|
9
9
|
|
10
|
-
|
10
|
+
```ruby
|
11
|
+
gem 'ember-auth-rails'
|
12
|
+
gem 'ember-auth-source' # specify versioning here to ensure compatibility
|
13
|
+
```
|
11
14
|
|
12
|
-
|
15
|
+
```sh
|
16
|
+
$ bundle update
|
17
|
+
```
|
13
18
|
|
14
|
-
|
19
|
+
Or install directly:
|
15
20
|
|
16
|
-
|
17
|
-
|
18
|
-
|
21
|
+
```sh
|
22
|
+
$ gem install ember-auth-rails
|
23
|
+
$ gem install ember-auth-source --version '6.0.2'
|
24
|
+
```
|
19
25
|
|
20
26
|
Add `ember-auth` to sprockets. `application.js`:
|
21
27
|
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
$ gem install ember-auth-source --version '3.0.0'
|
28
|
+
```javascript
|
29
|
+
//= require ember-auth
|
30
|
+
```
|
27
31
|
|
28
32
|
## Usage
|
29
33
|
|
34
|
+
Read the [docs](http://ember-auth.herokuapp.com).
|
35
|
+
|
30
36
|
See [README](https://github.com/heartsentwined/ember-auth) at the main
|
31
37
|
`ember-auth` site.
|
32
38
|
|
data/ember-auth-rails.gemspec
CHANGED
@@ -11,7 +11,7 @@ Gem::Specification.new do |gem|
|
|
11
11
|
gem.date = Time.now.strftime('%Y-%m-%d')
|
12
12
|
gem.summary = 'Ember-auth for Rails'
|
13
13
|
gem.description = <<-EOS
|
14
|
-
Ember-auth
|
14
|
+
Ember-auth is an authentication framework for ember.js.
|
15
15
|
It is expected to work out of the box with rails + devise.
|
16
16
|
EOS
|
17
17
|
gem.homepage = 'https://github.com/heartsentwined/ember-auth-rails'
|
@@ -24,5 +24,5 @@ Gem::Specification.new do |gem|
|
|
24
24
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
25
25
|
gem.require_paths = ['lib']
|
26
26
|
|
27
|
-
gem.license = '
|
27
|
+
gem.license = 'MIT license'
|
28
28
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ember-auth-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.0.
|
4
|
+
version: 4.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-
|
12
|
+
date: 2013-05-29 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: ember-auth-source
|
@@ -43,8 +43,8 @@ dependencies:
|
|
43
43
|
- - ! '>='
|
44
44
|
- !ruby/object:Gem::Version
|
45
45
|
version: '0'
|
46
|
-
description: ! " Ember-auth
|
47
|
-
|
46
|
+
description: ! " Ember-auth is an authentication framework for ember.js.\n It
|
47
|
+
is expected to work out of the box with rails + devise.\n"
|
48
48
|
email:
|
49
49
|
- heartsentwined@cogito-lab.com
|
50
50
|
executables: []
|
@@ -61,7 +61,7 @@ files:
|
|
61
61
|
- lib/ember-auth/rails/version.rb
|
62
62
|
homepage: https://github.com/heartsentwined/ember-auth-rails
|
63
63
|
licenses:
|
64
|
-
-
|
64
|
+
- MIT license
|
65
65
|
post_install_message:
|
66
66
|
rdoc_options: []
|
67
67
|
require_paths:
|
@@ -74,7 +74,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
74
74
|
version: '0'
|
75
75
|
segments:
|
76
76
|
- 0
|
77
|
-
hash: -
|
77
|
+
hash: -1011714989
|
78
78
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
79
79
|
none: false
|
80
80
|
requirements:
|
@@ -83,7 +83,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
83
83
|
version: '0'
|
84
84
|
segments:
|
85
85
|
- 0
|
86
|
-
hash: -
|
86
|
+
hash: -1011714989
|
87
87
|
requirements: []
|
88
88
|
rubyforge_project:
|
89
89
|
rubygems_version: 1.8.25
|