ember_devise_simple_auth 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: a6d8c6ea1de4d2b5993bba3ccc8c1814c905e494
4
- data.tar.gz: ad7874bb4ecbe72f5cda28f044b94e5d3c583e51
3
+ metadata.gz: 6a095e9cc5594caaf203ce6da45cdfe781835a17
4
+ data.tar.gz: 1575f49cd0f887e7c290b12069e2d65f8070ad82
5
5
  SHA512:
6
- metadata.gz: bdeffdc968585aa5a5d2b54301250162ad967b7371d6b1bd3a8f98de6e02ae0cca82ada8cb590a64ec8277e7f656fa7eb2b95db435a1ded74c19c34adca165b4
7
- data.tar.gz: 2d46b9446554b4b6b06659f9a24dd5768c0004d57f8f7fad3a847ac0e536547b97e5ca0b29569add14866a0e9b17a16614a7b50e21fb0e0ce27b7ff3d3e40fd9
6
+ metadata.gz: 071880f0a5ec9ff76226c3f1346d8b0930a1b40d8b54fb25623d6c03a5c66d6337f8d18fc7c939b09132b0f3100ec8172fe962ac53098903097f189a22fd2a45
7
+ data.tar.gz: 3c8d9d9b1e50734a39013e1eb193dc354558d5f4ff12b7215703e1e0b076196fc17d0ec8f3fc4920a3ab1aa78d39173371cef12bef4bcdb178a296790a156913
@@ -1,7 +1,7 @@
1
1
  require 'json'
2
2
  module EmberDeviseSimpleAuth
3
3
  def self.version_from_package_json
4
- pkg = File.read(File.expand_path("../../dist/bower.json"))
4
+ pkg = File.read(File.expand_path("dist/bower.json").tap{|u| puts u.inspect})
5
5
  JSON.parse(pkg)["version"]
6
6
  end
7
7
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ember_devise_simple_auth
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joe Fiorini
@@ -9,22 +9,8 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-02-28 00:00:00.000000000 Z
12
+ date: 2014-03-04 00:00:00.000000000 Z
13
13
  dependencies:
14
- - !ruby/object:Gem::Dependency
15
- name: rails
16
- requirement: !ruby/object:Gem::Requirement
17
- requirements:
18
- - - "~>"
19
- - !ruby/object:Gem::Version
20
- version: 4.0.2
21
- type: :runtime
22
- prerelease: false
23
- version_requirements: !ruby/object:Gem::Requirement
24
- requirements:
25
- - - "~>"
26
- - !ruby/object:Gem::Version
27
- version: 4.0.2
28
14
  - !ruby/object:Gem::Dependency
29
15
  name: devise
30
16
  requirement: !ruby/object:Gem::Requirement
@@ -61,14 +47,13 @@ executables: []
61
47
  extensions: []
62
48
  extra_rdoc_files: []
63
49
  files:
64
- - MIT-LICENSE
65
50
  - Rakefile
66
- - app/controllers/ember_devise_simple_auth/sessions_controller.rb
67
- - lib/ember_devise_simple_auth.rb
68
- - lib/ember_devise_simple_auth/engine.rb
69
- - lib/ember_devise_simple_auth/version.rb
70
- - lib/generators/ember_devise_simple_auth/USAGE
71
- - lib/generators/ember_devise_simple_auth/install_generator.rb
51
+ - support/rails/app/controllers/ember_devise_simple_auth/sessions_controller.rb
52
+ - support/rails/lib/ember_devise_simple_auth.rb
53
+ - support/rails/lib/ember_devise_simple_auth/engine.rb
54
+ - support/rails/lib/ember_devise_simple_auth/version.rb
55
+ - support/rails/lib/generators/ember_devise_simple_auth/USAGE
56
+ - support/rails/lib/generators/ember_devise_simple_auth/install_generator.rb
72
57
  homepage: https://www.github.com/d-i/ember_devise_simple_auth
73
58
  licenses: []
74
59
  metadata: {}
data/MIT-LICENSE DELETED
@@ -1,20 +0,0 @@
1
- Copyright 2014 YOURNAME
2
-
3
- Permission is hereby granted, free of charge, to any person obtaining
4
- a copy of this software and associated documentation files (the
5
- "Software"), to deal in the Software without restriction, including
6
- without limitation the rights to use, copy, modify, merge, publish,
7
- distribute, sublicense, and/or sell copies of the Software, and to
8
- permit persons to whom the Software is furnished to do so, subject to
9
- the following conditions:
10
-
11
- The above copyright notice and this permission notice shall be
12
- included in all copies or substantial portions of the Software.
13
-
14
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.