omniauth-vimeo 1.0.1 → 1.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: eb83a7b1de064eab852a85cc92c679f73b35a859
4
- data.tar.gz: 2e8c732d473b46db12f637ef6b3069a45d430898
3
+ metadata.gz: 0a1ca6fb536eb3083346e4e32739614c29eb5176
4
+ data.tar.gz: bd13e8a1a4a835e5c83a8749301beed41e5570ee
5
5
  SHA512:
6
- metadata.gz: 451bd333ab11121754737c629ff56b1e9c9c5bfffc9190bac119ccfeeab6f01604d83f5ffac3c77620685a00dfc1205cb96b2a4b814dc95e6b8ee2ac55446aab
7
- data.tar.gz: 8907f758508961341b425640950328ed11bceefb9decdf95b1cf0464c13fee720fad6e4f3440d9888580f959ccb8ea20142ece58cb9eb8d4483548f213d9949e
6
+ metadata.gz: 322cf7013355f7993686641c2af62c65d4293ebeb1e3ffb0498d468337dfa7b2abfa62a3b389023150ea9dba056bf238494adcc6da39d425a9389fcafa8fbdb9
7
+ data.tar.gz: 419e58e80bbb00f1f62d9f45a1c1991af75ae34a5154c07845cf2e1a4c556be51e411958e21495039ba39df8ce1a46f36f54313be00112f16186a518b0102595
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --color
@@ -0,0 +1 @@
1
+ 2.1.2
@@ -1,5 +1,5 @@
1
1
  module Omniauth
2
2
  module Vimeo
3
- VERSION = "1.0.1"
3
+ VERSION = "1.0.2"
4
4
  end
5
5
  end
@@ -17,10 +17,11 @@ Gem::Specification.new do |gem|
17
17
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
18
18
  gem.require_paths = ["lib"]
19
19
 
20
- gem.add_runtime_dependency 'multi_json', '~> 1.3'
21
- gem.add_runtime_dependency 'omniauth-oauth', '~> 1.0'
22
- gem.add_development_dependency "rspec", "~> 2.9"
23
- gem.add_development_dependency 'rake', '~> 0.9'
20
+ gem.add_dependency 'multi_json', '~> 1.10'
21
+ gem.add_dependency 'omniauth-oauth', '~> 1.0'
22
+
23
+ gem.add_development_dependency "rspec", "~> 3.0"
24
+ gem.add_development_dependency 'rake'
24
25
 
25
26
  gem.required_rubygems_version = Gem::Requirement.new('>= 1.3.6') if gem.respond_to? :required_rubygems_version=
26
27
  end
@@ -7,23 +7,23 @@ describe OmniAuth::Strategies::Vimeo do
7
7
 
8
8
  context "client options" do
9
9
  it 'should have correct name' do
10
- subject.options.name.should eq("vimeo")
10
+ expect(subject.options.name).to eq("vimeo")
11
11
  end
12
12
 
13
13
  it 'should have correct authorize url' do
14
- subject.options.client_options.authorize_path.should eq('/oauth/authorize')
14
+ expect(subject.options.client_options.authorize_path).to eq('/oauth/authorize')
15
15
  end
16
16
 
17
17
  it 'should have correct request url' do
18
- subject.options.client_options.request_token_path.should eq('/oauth/request_token')
18
+ expect(subject.options.client_options.request_token_path).to eq('/oauth/request_token')
19
19
  end
20
20
 
21
21
  it 'should have correct access url' do
22
- subject.options.client_options.access_token_path.should eq('/oauth/access_token')
22
+ expect(subject.options.client_options.access_token_path).to eq('/oauth/access_token')
23
23
  end
24
24
 
25
25
  it 'should have correct site' do
26
- subject.options.client_options.site.should eq("https://vimeo.com")
26
+ expect(subject.options.client_options.site).to eq("https://vimeo.com")
27
27
  end
28
28
  end
29
29
  end
metadata CHANGED
@@ -1,71 +1,71 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-vimeo
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Benjamin Fritsch
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-10-03 00:00:00.000000000 Z
11
+ date: 2014-08-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: multi_json
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ~>
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '1.3'
19
+ version: '1.10'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ~>
24
+ - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '1.3'
26
+ version: '1.10'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: omniauth-oauth
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ~>
31
+ - - "~>"
32
32
  - !ruby/object:Gem::Version
33
33
  version: '1.0'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ~>
38
+ - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: '1.0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rspec
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - ~>
45
+ - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: '2.9'
47
+ version: '3.0'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - ~>
52
+ - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: '2.9'
54
+ version: '3.0'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: rake
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - ~>
59
+ - - ">="
60
60
  - !ruby/object:Gem::Version
61
- version: '0.9'
61
+ version: '0'
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - ~>
66
+ - - ">="
67
67
  - !ruby/object:Gem::Version
68
- version: '0.9'
68
+ version: '0'
69
69
  description: OmniAuth strategy for Vimeo
70
70
  email:
71
71
  - beanie@benle.de
@@ -73,7 +73,9 @@ executables: []
73
73
  extensions: []
74
74
  extra_rdoc_files: []
75
75
  files:
76
- - .gitignore
76
+ - ".gitignore"
77
+ - ".rspec"
78
+ - ".ruby-version"
77
79
  - Gemfile
78
80
  - README.md
79
81
  - Rakefile
@@ -93,17 +95,17 @@ require_paths:
93
95
  - lib
94
96
  required_ruby_version: !ruby/object:Gem::Requirement
95
97
  requirements:
96
- - - '>='
98
+ - - ">="
97
99
  - !ruby/object:Gem::Version
98
100
  version: '0'
99
101
  required_rubygems_version: !ruby/object:Gem::Requirement
100
102
  requirements:
101
- - - '>='
103
+ - - ">="
102
104
  - !ruby/object:Gem::Version
103
105
  version: 1.3.6
104
106
  requirements: []
105
107
  rubyforge_project:
106
- rubygems_version: 2.0.2
108
+ rubygems_version: 2.2.2
107
109
  signing_key:
108
110
  specification_version: 4
109
111
  summary: OmniAuth strategy for Vimeo