auth0 3.1.0 → 3.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5a4327521f8791b8e00272ec8b83dbff1483ca1d
4
- data.tar.gz: bd73c85436b39923dd2c6ae499ab68ba159a6415
3
+ metadata.gz: 3e20e9b83a40e06024e988ca3d260f0f5b2277b2
4
+ data.tar.gz: b5bc65e02ce4acd0222eeedc9f7bde99f8d2c691
5
5
  SHA512:
6
- metadata.gz: 9fc47b40705ca2f94b86c42a8fc7a31632d6c0c2f920efe0d8335761171ca7a94175a0cc00f6f6226ab6f859a774151bdfc988b75c3176963fb2550122edafd4
7
- data.tar.gz: b59da5337022253dd21afadc2ba485706629686e4d8000bdba0e20a6425d76a0160c78028c10002a3086b9a1c0877303b7a48053a8b2295332d93f22471a6e5f
6
+ metadata.gz: 7cc74308da314469d87e229e5ec978aaa3a8f4bb9cb8bf9e3e4efb17cc81b387810335c82f36d941c7dd67d78ab7b53272316ea795f2bafced1f8e7a257aeb4b
7
+ data.tar.gz: 86f69a709282182af6f82e895337cd56b220eefa7f7fd1e0257a64156a188509667f9872c7299a56e1d8b78b88e18e21b5020348eacb86ae636d997174374c01
data/.gitignore CHANGED
@@ -6,3 +6,4 @@ coverage
6
6
  *.swo
7
7
  spec/auth0.yml
8
8
  .yardoc
9
+ Gemfile.lock
data/.travis.yml ADDED
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.1.0
4
+ - 2.2.1
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2014 Auth0 Inc.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  Ruby client for [Auth0](https://auth0.com)
2
2
 
3
+ [![Build Status](https://travis-ci.org/auth0/ruby-auth0.svg?branch=master)](https://travis-ci.org/auth0/ruby-auth0)
4
+
3
5
  > This used to be the omniauth strategy for [Auth0](https://auth0.com) but now is a client for the Auth0 api. The omniauth strategy has been moved to [omniauth-auth0](https://github.com/auth0/omniauth-auth0).
4
6
 
5
7
  ## Installation
@@ -35,6 +37,11 @@ auth0 = Auth0Client.new(
35
37
  puts auth0.get_users;
36
38
  ```
37
39
 
40
+
41
+ ## Issue Reporting
42
+
43
+ If you have found a bug or if you have a feature request, please report them at this repository issues section. Please do not report security vulnerabilities on the public GitHub issue tracker. The [Responsible Disclosure Program](https://auth0.com/whitehat) details the procedure for disclosing security issues.
44
+
38
45
  ## License
39
46
 
40
- MIT 2014 - Auth0 INC.
47
+ MIT 2014 - Auth0 Inc.
data/auth0.gemspec CHANGED
@@ -5,7 +5,7 @@ require "auth0/version"
5
5
  Gem::Specification.new do |s|
6
6
  s.name = "auth0"
7
7
  s.version = Auth0::VERSION
8
- s.authors = ["Auth0", "Jose Romaniello", "Petroe Ivan"]
8
+ s.authors = ["Auth0", "Jose Romaniello", "Ivan Petroe", "Patrik Ragnarsson"]
9
9
  s.email = ["support@auth0.com"]
10
10
  s.homepage = "https://github.com/auth0/ruby-auth0"
11
11
  s.summary = %q{Auth0 API Client}
@@ -20,10 +20,11 @@ Gem::Specification.new do |s|
20
20
 
21
21
  s.add_runtime_dependency 'httparty', '~> 0.13'
22
22
 
23
+ s.add_development_dependency 'rake'
23
24
  s.add_development_dependency 'rspec', '~> 3.1.0', '>= 3.1.0'
24
25
  s.add_development_dependency 'rack-test', '~> 0'
25
26
  s.add_development_dependency 'simplecov', '~> 0'
26
- s.add_development_dependency 'webmock', '~> 0'
27
+ s.add_development_dependency 'webmock'
27
28
  s.add_development_dependency 'byebug', '~> 0'
28
29
  s.add_development_dependency 'faker', '~> 0'
29
30
  s.add_development_dependency 'yard', '~> 0'
data/lib/auth0/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Auth0
2
2
  # current version of gem
3
- VERSION = "3.1.0"
3
+ VERSION = "3.1.1"
4
4
  end
metadata CHANGED
@@ -1,12 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: auth0
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.0
4
+ version: 3.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Auth0
8
8
  - Jose Romaniello
9
- - Petroe Ivan
9
+ - Ivan Petroe
10
+ - Patrik Ragnarsson
10
11
  autorequire:
11
12
  bindir: bin
12
13
  cert_chain: []
@@ -26,6 +27,20 @@ dependencies:
26
27
  - - ~>
27
28
  - !ruby/object:Gem::Version
28
29
  version: '0.13'
30
+ - !ruby/object:Gem::Dependency
31
+ name: rake
32
+ requirement: !ruby/object:Gem::Requirement
33
+ requirements:
34
+ - - '>='
35
+ - !ruby/object:Gem::Version
36
+ version: '0'
37
+ type: :development
38
+ prerelease: false
39
+ version_requirements: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - '>='
42
+ - !ruby/object:Gem::Version
43
+ version: '0'
29
44
  - !ruby/object:Gem::Dependency
30
45
  name: rspec
31
46
  requirement: !ruby/object:Gem::Requirement
@@ -78,14 +93,14 @@ dependencies:
78
93
  name: webmock
79
94
  requirement: !ruby/object:Gem::Requirement
80
95
  requirements:
81
- - - ~>
96
+ - - '>='
82
97
  - !ruby/object:Gem::Version
83
98
  version: '0'
84
99
  type: :development
85
100
  prerelease: false
86
101
  version_requirements: !ruby/object:Gem::Requirement
87
102
  requirements:
88
- - - ~>
103
+ - - '>='
89
104
  - !ruby/object:Gem::Version
90
105
  version: '0'
91
106
  - !ruby/object:Gem::Dependency
@@ -140,8 +155,9 @@ files:
140
155
  - .bundle/config
141
156
  - .gitignore
142
157
  - .rspec
158
+ - .travis.yml
143
159
  - Gemfile
144
- - Gemfile.lock
160
+ - LICENSE
145
161
  - README.md
146
162
  - Rakefile
147
163
  - auth0.gemspec
data/Gemfile.lock DELETED
@@ -1,68 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- auth0 (2.2.1)
5
- httparty (~> 0.13)
6
-
7
- GEM
8
- remote: http://rubygems.org/
9
- specs:
10
- addressable (2.3.6)
11
- byebug (3.5.1)
12
- columnize (~> 0.8)
13
- debugger-linecache (~> 1.2)
14
- slop (~> 3.6)
15
- columnize (0.9.0)
16
- crack (0.4.2)
17
- safe_yaml (~> 1.0.0)
18
- debugger-linecache (1.2.0)
19
- diff-lcs (1.2.5)
20
- docile (1.1.5)
21
- faker (1.4.3)
22
- i18n (~> 0.5)
23
- httparty (0.13.3)
24
- json (~> 1.8)
25
- multi_xml (>= 0.5.2)
26
- i18n (0.7.0)
27
- json (1.8.2)
28
- multi_json (1.10.1)
29
- multi_xml (0.5.5)
30
- rack (1.5.2)
31
- rack-test (0.6.2)
32
- rack (>= 1.0)
33
- rspec (3.1.0)
34
- rspec-core (~> 3.1.0)
35
- rspec-expectations (~> 3.1.0)
36
- rspec-mocks (~> 3.1.0)
37
- rspec-core (3.1.7)
38
- rspec-support (~> 3.1.0)
39
- rspec-expectations (3.1.2)
40
- diff-lcs (>= 1.2.0, < 2.0)
41
- rspec-support (~> 3.1.0)
42
- rspec-mocks (3.1.3)
43
- rspec-support (~> 3.1.0)
44
- rspec-support (3.1.2)
45
- safe_yaml (1.0.3)
46
- simplecov (0.9.0)
47
- docile (~> 1.1.0)
48
- multi_json
49
- simplecov-html (~> 0.8.0)
50
- simplecov-html (0.8.0)
51
- slop (3.6.0)
52
- webmock (1.18.0)
53
- addressable (>= 2.3.6)
54
- crack (>= 0.3.2)
55
- yard (0.8.7.6)
56
-
57
- PLATFORMS
58
- ruby
59
-
60
- DEPENDENCIES
61
- auth0!
62
- byebug
63
- faker
64
- rack-test
65
- rspec (~> 3.1.0, >= 3.1.0)
66
- simplecov
67
- webmock
68
- yard