auth0 3.6.0 → 3.6.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -0
- data/Rakefile +0 -1
- data/lib/auth0/api/v2/users.rb +5 -0
- data/lib/auth0/version.rb +1 -1
- data/spec/integration/lib/auth0/api/v2/api_users_spec.rb +0 -2
- data/spec/spec_helper_full.rb +3 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6df06451c0b07b430049138413ca19281e34ee71
|
4
|
+
data.tar.gz: 227076c4db9c5db278060bc3b03a122359c4bd56
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 970f5d35df489357eab0382b97745c326b452ad97abcb8bbe2288d89710f04e9d0780bbc792eed7f153213eb07c487d5d1b4343792051f6ebe7e2a957f579d8e
|
7
|
+
data.tar.gz: afe8dce3f635069f4316a50bcbcee5a82cc787e55c393c379899706db41e1e36e84e23538b5f77c0b0988a2628fefdaf758871a7ffd1d4b96494a4d31eb2497e
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
+
## [v3.6.0](https://github.com/auth0/ruby-auth0/tree/v3.6.0) (2015-06-01)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/auth0/ruby-auth0/compare/v3.5.0...v3.6.0)
|
6
|
+
|
7
|
+
**Merged pull requests:**
|
8
|
+
|
9
|
+
- Remove exclude\_fields parameter for getting users [\#34](https://github.com/auth0/ruby-auth0/pull/34) ([hzalaz](https://github.com/hzalaz))
|
10
|
+
|
11
|
+
- Add connections [\#33](https://github.com/auth0/ruby-auth0/pull/33) ([taylorfinnell](https://github.com/taylorfinnell))
|
12
|
+
|
13
|
+
- Use client header spec as per documentation [\#32](https://github.com/auth0/ruby-auth0/pull/32) ([benschwarz](https://github.com/benschwarz))
|
14
|
+
|
3
15
|
## [v3.5.0](https://github.com/auth0/ruby-auth0/tree/v3.5.0) (2015-05-21)
|
4
16
|
|
5
17
|
[Full Changelog](https://github.com/auth0/ruby-auth0/compare/v3.4.0...v3.5.0)
|
data/Rakefile
CHANGED
data/lib/auth0/api/v2/users.rb
CHANGED
data/lib/auth0/version.rb
CHANGED
@@ -7,7 +7,6 @@ describe Auth0::Api::V2::Users do
|
|
7
7
|
let(:password) { Faker::Internet.password }
|
8
8
|
let(:connection) { "Username-Password-Authentication" }
|
9
9
|
let!(:user) { client.create_user(username, {
|
10
|
-
"username" => username,
|
11
10
|
"email" => email,
|
12
11
|
"password" => password,
|
13
12
|
"email_verified" => false,
|
@@ -48,7 +47,6 @@ describe Auth0::Api::V2::Users do
|
|
48
47
|
|
49
48
|
it { should include("user_id", "identities") }
|
50
49
|
it { should include(
|
51
|
-
"username" => username,
|
52
50
|
"email" => email,
|
53
51
|
"email_verified" => false,
|
54
52
|
)}
|
data/spec/spec_helper_full.rb
CHANGED
@@ -20,9 +20,11 @@ Dir[("./lib/**/*.rb")].each { |f| require f }
|
|
20
20
|
Dir[("./spec/support/**/*.rb")].each { |f| require f }
|
21
21
|
|
22
22
|
def entity_suffix
|
23
|
-
ENV["TRAVIS_JOB_ID"] || "
|
23
|
+
(ENV["TRAVIS_JOB_ID"] || "local").gsub('_', '')
|
24
24
|
end
|
25
25
|
|
26
|
+
puts "Entity suffix is #{entity_suffix}"
|
27
|
+
|
26
28
|
RSpec.configure do |config|
|
27
29
|
config.filter_run :focus => true
|
28
30
|
config.run_all_when_everything_filtered = true
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: auth0
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.6.
|
4
|
+
version: 3.6.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Auth0
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date: 2015-
|
14
|
+
date: 2015-07-09 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: httparty
|