casino_core-authenticator-activerecord 1.1.2 → 1.1.3

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.
data/Gemfile.lock CHANGED
@@ -1,53 +1,65 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- casino_core-authenticator-activerecord (1.1.2)
4
+ casino_core-authenticator-activerecord (1.1.3)
5
5
  activerecord (~> 3.2.12)
6
- bcrypt-ruby (~> 3.0.1)
7
- unix-crypt (~> 1.0.2)
6
+ bcrypt-ruby (~> 3.0)
7
+ unix-crypt (~> 1.1)
8
8
 
9
9
  GEM
10
10
  remote: https://rubygems.org/
11
11
  specs:
12
- activemodel (3.2.12)
13
- activesupport (= 3.2.12)
12
+ activemodel (3.2.13)
13
+ activesupport (= 3.2.13)
14
14
  builder (~> 3.0.0)
15
- activerecord (3.2.12)
16
- activemodel (= 3.2.12)
17
- activesupport (= 3.2.12)
15
+ activerecord (3.2.13)
16
+ activemodel (= 3.2.13)
17
+ activesupport (= 3.2.13)
18
18
  arel (~> 3.0.2)
19
19
  tzinfo (~> 0.3.29)
20
- activesupport (3.2.12)
21
- i18n (~> 0.6)
20
+ activesupport (3.2.13)
21
+ i18n (= 0.6.1)
22
22
  multi_json (~> 1.0)
23
23
  arel (3.0.2)
24
24
  bcrypt-ruby (3.0.1)
25
25
  builder (3.0.4)
26
- diff-lcs (1.1.3)
26
+ colorize (0.5.8)
27
+ coveralls (0.6.4)
28
+ colorize
29
+ multi_json (~> 1.3)
30
+ rest-client
31
+ simplecov (>= 0.7)
32
+ thor
33
+ diff-lcs (1.2.2)
27
34
  i18n (0.6.1)
28
- multi_json (1.6.1)
29
- rake (10.0.3)
30
- rspec (2.12.0)
31
- rspec-core (~> 2.12.0)
32
- rspec-expectations (~> 2.12.0)
33
- rspec-mocks (~> 2.12.0)
34
- rspec-core (2.12.2)
35
- rspec-expectations (2.12.1)
36
- diff-lcs (~> 1.1.3)
37
- rspec-mocks (2.12.2)
35
+ mime-types (1.22)
36
+ multi_json (1.7.2)
37
+ rake (10.0.4)
38
+ rest-client (1.6.7)
39
+ mime-types (>= 1.16)
40
+ rspec (2.13.0)
41
+ rspec-core (~> 2.13.0)
42
+ rspec-expectations (~> 2.13.0)
43
+ rspec-mocks (~> 2.13.0)
44
+ rspec-core (2.13.1)
45
+ rspec-expectations (2.13.0)
46
+ diff-lcs (>= 1.1.3, < 2.0)
47
+ rspec-mocks (2.13.0)
38
48
  simplecov (0.7.1)
39
49
  multi_json (~> 1.0)
40
50
  simplecov-html (~> 0.7.1)
41
51
  simplecov-html (0.7.1)
42
52
  sqlite3 (1.3.7)
43
- tzinfo (0.3.35)
44
- unix-crypt (1.0.2)
53
+ thor (0.18.1)
54
+ tzinfo (0.3.37)
55
+ unix-crypt (1.1.0)
45
56
 
46
57
  PLATFORMS
47
58
  ruby
48
59
 
49
60
  DEPENDENCIES
50
61
  casino_core-authenticator-activerecord!
62
+ coveralls
51
63
  rake (~> 10.0)
52
64
  rspec (~> 2.12)
53
65
  simplecov (~> 0.7)
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # casino_core-authenticator-activerecord [![Build Status](https://travis-ci.org/rbCAS/casino_core-authenticator-activerecord.png?branch=master)](https://travis-ci.org/rbCAS/casino_core-authenticator-activerecord)
1
+ # casino_core-authenticator-activerecord [![Build Status](https://travis-ci.org/rbCAS/casino_core-authenticator-activerecord.png?branch=master)](https://travis-ci.org/rbCAS/casino_core-authenticator-activerecord) [![Coverage Status](https://coveralls.io/repos/rbCAS/casino_core-authenticator-activerecord/badge.png?branch=master)](https://coveralls.io/r/rbCAS/casino_core-authenticator-activerecord)
2
2
 
3
3
  Provides mechanism to use ActiveRecord as an authenticator for [CASinoCore](https://github.com/rbCAS/CASinoCore).
4
4
 
@@ -21,8 +21,9 @@ Gem::Specification.new do |s|
21
21
  s.add_development_dependency 'rspec', '~> 2.12'
22
22
  s.add_development_dependency 'simplecov', '~> 0.7'
23
23
  s.add_development_dependency 'sqlite3', '~> 1.3.7'
24
+ s.add_development_dependency 'coveralls'
24
25
 
25
26
  s.add_runtime_dependency 'activerecord', '~> 3.2.12'
26
- s.add_runtime_dependency 'unix-crypt', '~> 1.0.2'
27
- s.add_runtime_dependency 'bcrypt-ruby', '~> 3.0.1'
27
+ s.add_runtime_dependency 'unix-crypt', '~> 1.1'
28
+ s.add_runtime_dependency 'bcrypt-ruby', '~> 3.0'
28
29
  end
@@ -1,7 +1,7 @@
1
1
  module CASinoCore
2
2
  class Authenticator
3
3
  class ActiveRecord
4
- VERSION = '1.1.2'
4
+ VERSION = '1.1.3'
5
5
  end
6
6
  end
7
7
  end
data/spec/spec_helper.rb CHANGED
@@ -2,6 +2,8 @@ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
2
2
  $LOAD_PATH.unshift(File.dirname(__FILE__))
3
3
 
4
4
  require 'simplecov'
5
+ require 'coveralls'
6
+ SimpleCov.formatter = Coveralls::SimpleCov::Formatter
5
7
  SimpleCov.start do
6
8
  add_filter '/spec'
7
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: casino_core-authenticator-activerecord
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.2
4
+ version: 1.1.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2013-02-24 00:00:00.000000000 Z
13
+ date: 2013-04-03 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rake
@@ -76,6 +76,22 @@ dependencies:
76
76
  - - ~>
77
77
  - !ruby/object:Gem::Version
78
78
  version: 1.3.7
79
+ - !ruby/object:Gem::Dependency
80
+ name: coveralls
81
+ requirement: !ruby/object:Gem::Requirement
82
+ none: false
83
+ requirements:
84
+ - - ! '>='
85
+ - !ruby/object:Gem::Version
86
+ version: '0'
87
+ type: :development
88
+ prerelease: false
89
+ version_requirements: !ruby/object:Gem::Requirement
90
+ none: false
91
+ requirements:
92
+ - - ! '>='
93
+ - !ruby/object:Gem::Version
94
+ version: '0'
79
95
  - !ruby/object:Gem::Dependency
80
96
  name: activerecord
81
97
  requirement: !ruby/object:Gem::Requirement
@@ -99,7 +115,7 @@ dependencies:
99
115
  requirements:
100
116
  - - ~>
101
117
  - !ruby/object:Gem::Version
102
- version: 1.0.2
118
+ version: '1.1'
103
119
  type: :runtime
104
120
  prerelease: false
105
121
  version_requirements: !ruby/object:Gem::Requirement
@@ -107,7 +123,7 @@ dependencies:
107
123
  requirements:
108
124
  - - ~>
109
125
  - !ruby/object:Gem::Version
110
- version: 1.0.2
126
+ version: '1.1'
111
127
  - !ruby/object:Gem::Dependency
112
128
  name: bcrypt-ruby
113
129
  requirement: !ruby/object:Gem::Requirement
@@ -115,7 +131,7 @@ dependencies:
115
131
  requirements:
116
132
  - - ~>
117
133
  - !ruby/object:Gem::Version
118
- version: 3.0.1
134
+ version: '3.0'
119
135
  type: :runtime
120
136
  prerelease: false
121
137
  version_requirements: !ruby/object:Gem::Requirement
@@ -123,7 +139,7 @@ dependencies:
123
139
  requirements:
124
140
  - - ~>
125
141
  - !ruby/object:Gem::Version
126
- version: 3.0.1
142
+ version: '3.0'
127
143
  description: This gem can be used to allow the CASinoCore backend to authenticate
128
144
  against an SQL server using ActiveRecord.
129
145
  email:
@@ -160,21 +176,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
160
176
  - - ! '>='
161
177
  - !ruby/object:Gem::Version
162
178
  version: '0'
163
- segments:
164
- - 0
165
- hash: 3386198219502507713
166
179
  required_rubygems_version: !ruby/object:Gem::Requirement
167
180
  none: false
168
181
  requirements:
169
182
  - - ! '>='
170
183
  - !ruby/object:Gem::Version
171
184
  version: '0'
172
- segments:
173
- - 0
174
- hash: 3386198219502507713
175
185
  requirements: []
176
186
  rubyforge_project:
177
- rubygems_version: 1.8.25
187
+ rubygems_version: 1.8.24
178
188
  signing_key:
179
189
  specification_version: 3
180
190
  summary: Provides mechanism to use ActiveRecord as an authenticator for CASinoCore.