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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5a47592985ca2d564200c14e5b0129e196f609a9
4
- data.tar.gz: 938c7174648629d40e948855de95a1531c8245b4
3
+ metadata.gz: 6df06451c0b07b430049138413ca19281e34ee71
4
+ data.tar.gz: 227076c4db9c5db278060bc3b03a122359c4bd56
5
5
  SHA512:
6
- metadata.gz: 767338bdf3da7e5f081cde39fe65f742ab0e588087e057b59142e8a1d70f8b281b3dab59d17b8a8071a9e2dd120ac6132fd0b56ed71a027bc67bb2a3088a0b9c
7
- data.tar.gz: 21a89cc78706a91f6b503bed30b39b9ac6a9df1ec8b2804fe172034d6049388d77e1334806ae408536bb73631f5b90ae5b74a993e39d834979c9246f2d429cec
6
+ metadata.gz: 970f5d35df489357eab0382b97745c326b452ad97abcb8bbe2288d89710f04e9d0780bbc792eed7f153213eb07c487d5d1b4343792051f6ebe7e2a957f579d8e
7
+ data.tar.gz: afe8dce3f635069f4316a50bcbcee5a82cc787e55c393c379899706db41e1e36e84e23538b5f77c0b0988a2628fefdaf758871a7ffd1d4b96494a4d31eb2497e
@@ -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
@@ -1,7 +1,6 @@
1
1
  #!/usr/bin/env rake
2
2
  require "bundler/gem_tasks"
3
3
 
4
- puts "Entity suffix is #{ENV["TRAVIS_JOB_ID"] || "_local"}"
5
4
  begin
6
5
  require 'rspec/core/rake_task'
7
6
 
@@ -14,6 +14,11 @@ module Auth0
14
14
  fields: fields,
15
15
  q: q
16
16
  }
17
+
18
+ if request_params[:q]
19
+ request_params[:search_engine] = :v2
20
+ end
21
+
17
22
  path = "/api/v2/users"
18
23
  get(path, request_params)
19
24
  end
@@ -1,4 +1,4 @@
1
1
  module Auth0
2
2
  # current version of gem
3
- VERSION = "3.6.0"
3
+ VERSION = "3.6.1"
4
4
  end
@@ -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
  )}
@@ -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"] || "_local"
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.0
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-06-01 00:00:00.000000000 Z
14
+ date: 2015-07-09 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: httparty