simple-auth 0.3.6 → 0.3.7

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -10,7 +10,7 @@ begin
10
10
  gem.email = "uchouhan@optimiscorp.com"
11
11
  gem.homepage = "http://github.com/uchouhan/simple-auth"
12
12
  gem.authors = ["Umang Chouhan"]
13
- gem.add_development_dependency "rspec", ">= 1.2.9"
13
+ gem.add_development_dependency "rspec", ">= 2.0.0.beta.16"
14
14
  gem.add_development_dependency "yard", ">= 0"
15
15
  # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
16
16
  end
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.3.6
1
+ 0.3.7
@@ -0,0 +1,5 @@
1
+ require 'rubygems'
2
+ require 'rest_client'
3
+ require 'yajl'
4
+ require 'simple_auth/configuration_helper'
5
+ require 'simple_auth/api'
File without changes
data/simple-auth.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{simple-auth}
8
- s.version = "0.3.6"
8
+ s.version = "0.3.7"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Umang Chouhan"]
@@ -25,12 +25,12 @@ Gem::Specification.new do |s|
25
25
  "Rakefile",
26
26
  "VERSION",
27
27
  "configuration.rb.example",
28
- "lib/simple-auth.rb",
29
- "lib/simple-auth/api.rb",
30
- "lib/simple-auth/configuration_helper.rb",
28
+ "lib/simple_auth.rb",
29
+ "lib/simple_auth/api.rb",
30
+ "lib/simple_auth/configuration_helper.rb",
31
31
  "simple-auth.gemspec",
32
- "spec/lib/simple-auth/api_spec.rb",
33
- "spec/lib/simple-auth/configuration_helper_spec.rb",
32
+ "spec/lib/simple_auth/api_spec.rb",
33
+ "spec/lib/simple_auth/configuration_helper_spec.rb",
34
34
  "spec/spec_helper.rb",
35
35
  "spec/support/configuration.rb",
36
36
  "spec/support/mock_requests.rb",
@@ -42,8 +42,8 @@ Gem::Specification.new do |s|
42
42
  s.rubygems_version = %q{1.3.7}
43
43
  s.summary = %q{Simple shared authentication API}
44
44
  s.test_files = [
45
- "spec/lib/simple-auth/api_spec.rb",
46
- "spec/lib/simple-auth/configuration_helper_spec.rb",
45
+ "spec/lib/simple_auth/api_spec.rb",
46
+ "spec/lib/simple_auth/configuration_helper_spec.rb",
47
47
  "spec/spec_helper.rb",
48
48
  "spec/support/configuration.rb",
49
49
  "spec/support/mock_requests.rb",
@@ -55,14 +55,14 @@ Gem::Specification.new do |s|
55
55
  s.specification_version = 3
56
56
 
57
57
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
58
- s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
58
+ s.add_development_dependency(%q<rspec>, [">= 2.0.0.beta.16"])
59
59
  s.add_development_dependency(%q<yard>, [">= 0"])
60
60
  else
61
- s.add_dependency(%q<rspec>, [">= 1.2.9"])
61
+ s.add_dependency(%q<rspec>, [">= 2.0.0.beta.16"])
62
62
  s.add_dependency(%q<yard>, [">= 0"])
63
63
  end
64
64
  else
65
- s.add_dependency(%q<rspec>, [">= 1.2.9"])
65
+ s.add_dependency(%q<rspec>, [">= 2.0.0.beta.16"])
66
66
  s.add_dependency(%q<yard>, [">= 0"])
67
67
  end
68
68
  end
File without changes
data/spec/spec_helper.rb CHANGED
@@ -6,7 +6,7 @@ Bundler.require(:default, :test)
6
6
  RAILS_ENV = 'test'
7
7
 
8
8
  require 'spec/support/stubs'
9
- require 'lib/simple-auth'
9
+ require 'lib/simple_auth'
10
10
  require 'spec/support/configuration'
11
11
  require 'spec/support/mock_requests'
12
12
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simple-auth
3
3
  version: !ruby/object:Gem::Version
4
- hash: 31
4
+ hash: 29
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 3
9
- - 6
10
- version: 0.3.6
9
+ - 7
10
+ version: 0.3.7
11
11
  platform: ruby
12
12
  authors:
13
13
  - Umang Chouhan
@@ -26,12 +26,14 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- hash: 13
29
+ hash: 62196419
30
30
  segments:
31
- - 1
32
31
  - 2
33
- - 9
34
- version: 1.2.9
32
+ - 0
33
+ - 0
34
+ - beta
35
+ - 16
36
+ version: 2.0.0.beta.16
35
37
  type: :development
36
38
  version_requirements: *id001
37
39
  - !ruby/object:Gem::Dependency
@@ -66,12 +68,12 @@ files:
66
68
  - Rakefile
67
69
  - VERSION
68
70
  - configuration.rb.example
69
- - lib/simple-auth.rb
70
- - lib/simple-auth/api.rb
71
- - lib/simple-auth/configuration_helper.rb
71
+ - lib/simple_auth.rb
72
+ - lib/simple_auth/api.rb
73
+ - lib/simple_auth/configuration_helper.rb
72
74
  - simple-auth.gemspec
73
- - spec/lib/simple-auth/api_spec.rb
74
- - spec/lib/simple-auth/configuration_helper_spec.rb
75
+ - spec/lib/simple_auth/api_spec.rb
76
+ - spec/lib/simple_auth/configuration_helper_spec.rb
75
77
  - spec/spec_helper.rb
76
78
  - spec/support/configuration.rb
77
79
  - spec/support/mock_requests.rb
@@ -111,8 +113,8 @@ signing_key:
111
113
  specification_version: 3
112
114
  summary: Simple shared authentication API
113
115
  test_files:
114
- - spec/lib/simple-auth/api_spec.rb
115
- - spec/lib/simple-auth/configuration_helper_spec.rb
116
+ - spec/lib/simple_auth/api_spec.rb
117
+ - spec/lib/simple_auth/configuration_helper_spec.rb
116
118
  - spec/spec_helper.rb
117
119
  - spec/support/configuration.rb
118
120
  - spec/support/mock_requests.rb
data/lib/simple-auth.rb DELETED
@@ -1,5 +0,0 @@
1
- require 'rubygems'
2
- require 'rest_client'
3
- require 'yajl'
4
- require 'simple-auth/configuration_helper'
5
- require 'simple-auth/api'