simple_auth 2.0.0 → 2.0.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: 90b77901780358f8890699611f29c46dd78d844b
4
- data.tar.gz: 00db8239eb7dd70a701a532f4d491d3cb8ce8110
3
+ metadata.gz: 16b288cc0b5f5f67f53fc86454427dfb1a392064
4
+ data.tar.gz: ba6f438d37ea3c8918d1aa240feeab6f6d5e4707
5
5
  SHA512:
6
- metadata.gz: 86bda4fb617c416cb2e669002443ea61bf88098dddd19d7725affa62c6a78753be0e8288a83cb83180c6932b4fbcf1c7df7212fea21b0d7fa14402164ff831dc
7
- data.tar.gz: 5829b734bcede51e7c14859b329bb0480b47d4311cd6c72174073570e5dc60889028ebb53eb136a9567812d0c9d280acb08259b193fc9e3460615d63c47c0752
6
+ metadata.gz: b5ebd95ef1bb5b40032a6a19617d78a1e834e83e2ee212e46f5ae943422452b000d21df7154127fb9638647dbfd96b0fb522a3cb3cf9b6855187d9aba25a2388
7
+ data.tar.gz: 58c5f19ab8f6fb09f502bb9548ffcd48914c42b0ccc591105221635ef350547f6625894d254c64e7121fb79c2c61433d2a1690a4316807902f1510dd0dcd7d61
data/.gitignore CHANGED
@@ -2,4 +2,6 @@ pkg
2
2
  .rubyrc
3
3
  .rvmrc
4
4
  log
5
- .bundle
5
+ .bundle
6
+ gemfiles/*.lock
7
+ Gemfile.lock
@@ -1,3 +1,7 @@
1
+ # v2.0.1
2
+
3
+ - The compat mode wasn't generating the `password_digest`.
4
+
1
5
  # v2.0.0
2
6
 
3
7
  - Released version 2.0.0. This version removes support for MongoDB
@@ -16,11 +16,11 @@ module SimpleAuth
16
16
  module ActiveRecord
17
17
  module InstanceMethods
18
18
  def password=(password)
19
- @password = SimpleAuth::Config.crypter.call(password, password_salt)
19
+ super SimpleAuth::Config.crypter.call(password, password_salt)
20
20
  end
21
21
 
22
22
  def password_confirmation=(password)
23
- @password_confirmation = SimpleAuth::Config.crypter.call(password, password_salt)
23
+ super SimpleAuth::Config.crypter.call(password, password_salt)
24
24
  end
25
25
 
26
26
  def authenticate(password)
@@ -2,7 +2,7 @@ module SimpleAuth
2
2
  module Version
3
3
  MAJOR = 2
4
4
  MINOR = 0
5
- PATCH = 0
5
+ PATCH = 1
6
6
  STRING = "#{MAJOR}.#{MINOR}.#{PATCH}"
7
7
  end
8
8
  end
@@ -3,11 +3,11 @@ require "spec_helper"
3
3
  describe SimpleAuth, "compatibility mode" do
4
4
  before do
5
5
  SimpleAuth::Config.model = :customer
6
- require "simple_auth/compat"
6
+ load "./lib/simple_auth/compat.rb"
7
7
  require "customer"
8
8
  end
9
9
 
10
- after do
10
+ after :all do
11
11
  mod = SimpleAuth::ActiveRecord::InstanceMethods
12
12
  mod.send :remove_method, :password=
13
13
  mod.send :remove_method, :password_confirmation=
@@ -28,4 +28,9 @@ describe SimpleAuth, "compatibility mode" do
28
28
 
29
29
  expect(Customer.authenticate("johndoe", "test")).to be_a(Customer)
30
30
  end
31
+
32
+ it "assigns password_digest" do
33
+ customer = Customer.create(password: "test")
34
+ expect(customer.password_digest).not_to be_empty
35
+ end
31
36
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simple_auth
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nando Vieira
@@ -92,17 +92,12 @@ files:
92
92
  - ".travis.yml"
93
93
  - CHANGELOG.md
94
94
  - Gemfile
95
- - Gemfile.lock
96
95
  - README.md
97
96
  - Rakefile
98
97
  - gemfiles/rails_3_1.gemfile
99
- - gemfiles/rails_3_1.gemfile.lock
100
98
  - gemfiles/rails_3_2.gemfile
101
- - gemfiles/rails_3_2.gemfile.lock
102
99
  - gemfiles/rails_4_0.gemfile
103
- - gemfiles/rails_4_0.gemfile.lock
104
100
  - gemfiles/rails_4_1.gemfile
105
- - gemfiles/rails_4_1.gemfile.lock
106
101
  - lib/simple_auth.rb
107
102
  - lib/simple_auth/action_controller.rb
108
103
  - lib/simple_auth/active_record.rb
@@ -1,145 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- simple_auth (2.0.0)
5
- rails (>= 3.1.0)
6
-
7
- GEM
8
- remote: http://rubygems.org/
9
- specs:
10
- actionmailer (4.1.0)
11
- actionpack (= 4.1.0)
12
- actionview (= 4.1.0)
13
- mail (~> 2.5.4)
14
- actionpack (4.1.0)
15
- actionview (= 4.1.0)
16
- activesupport (= 4.1.0)
17
- rack (~> 1.5.2)
18
- rack-test (~> 0.6.2)
19
- actionview (4.1.0)
20
- activesupport (= 4.1.0)
21
- builder (~> 3.1)
22
- erubis (~> 2.7.0)
23
- activemodel (4.1.0)
24
- activesupport (= 4.1.0)
25
- builder (~> 3.1)
26
- activerecord (4.1.0)
27
- activemodel (= 4.1.0)
28
- activesupport (= 4.1.0)
29
- arel (~> 5.0.0)
30
- activesupport (4.1.0)
31
- i18n (~> 0.6, >= 0.6.9)
32
- json (~> 1.7, >= 1.7.7)
33
- minitest (~> 5.1)
34
- thread_safe (~> 0.1)
35
- tzinfo (~> 1.1)
36
- arel (5.0.1.20140414130214)
37
- awesome_print (1.2.0)
38
- bcrypt (3.1.7)
39
- builder (3.2.2)
40
- coderay (1.1.0)
41
- columnize (0.3.6)
42
- debugger (1.6.6)
43
- columnize (>= 0.3.1)
44
- debugger-linecache (~> 1.2.0)
45
- debugger-ruby_core_source (~> 1.3.2)
46
- debugger-linecache (1.2.0)
47
- debugger-ruby_core_source (1.3.2)
48
- diff-lcs (1.2.5)
49
- erubis (2.7.0)
50
- hike (1.2.3)
51
- i18n (0.6.9)
52
- json (1.8.1)
53
- mail (2.5.4)
54
- mime-types (~> 1.16)
55
- treetop (~> 1.4.8)
56
- method_source (0.8.2)
57
- mime-types (1.25.1)
58
- minitest (5.3.3)
59
- multi_json (1.9.2)
60
- polyglot (0.3.4)
61
- pry (0.9.12.6)
62
- coderay (~> 1.0)
63
- method_source (~> 0.8)
64
- slop (~> 3.4)
65
- pry-debugger (0.2.2)
66
- debugger (~> 1.3)
67
- pry (~> 0.9.10)
68
- pry-meta (0.0.6)
69
- awesome_print
70
- pry
71
- pry-debugger
72
- pry-remote
73
- pry-remote (0.1.8)
74
- pry (~> 0.9)
75
- slop (~> 3.0)
76
- rack (1.5.2)
77
- rack-test (0.6.2)
78
- rack (>= 1.0)
79
- rails (4.1.0)
80
- actionmailer (= 4.1.0)
81
- actionpack (= 4.1.0)
82
- actionview (= 4.1.0)
83
- activemodel (= 4.1.0)
84
- activerecord (= 4.1.0)
85
- activesupport (= 4.1.0)
86
- bundler (>= 1.3.0, < 2.0)
87
- railties (= 4.1.0)
88
- sprockets-rails (~> 2.0)
89
- railties (4.1.0)
90
- actionpack (= 4.1.0)
91
- activesupport (= 4.1.0)
92
- rake (>= 0.8.7)
93
- thor (>= 0.18.1, < 2.0)
94
- rake (10.3.1)
95
- rspec-collection_matchers (0.0.3)
96
- rspec-expectations (>= 2.99.0.beta1)
97
- rspec-core (3.0.0.beta2)
98
- rspec-support (= 3.0.0.beta2)
99
- rspec-expectations (3.0.0.beta2)
100
- diff-lcs (>= 1.2.0, < 2.0)
101
- rspec-support (= 3.0.0.beta2)
102
- rspec-mocks (3.0.0.beta2)
103
- rspec-support (= 3.0.0.beta2)
104
- rspec-rails (3.0.0.beta2)
105
- actionpack (>= 3.0)
106
- activemodel (>= 3.0)
107
- activesupport (>= 3.0)
108
- railties (>= 3.0)
109
- rspec-collection_matchers
110
- rspec-core (= 3.0.0.beta2)
111
- rspec-expectations (= 3.0.0.beta2)
112
- rspec-mocks (= 3.0.0.beta2)
113
- rspec-support (= 3.0.0.beta2)
114
- rspec-support (3.0.0.beta2)
115
- slop (3.5.0)
116
- sprockets (2.12.1)
117
- hike (~> 1.2)
118
- multi_json (~> 1.0)
119
- rack (~> 1.0)
120
- tilt (~> 1.1, != 1.3.0)
121
- sprockets-rails (2.1.3)
122
- actionpack (>= 3.0)
123
- activesupport (>= 3.0)
124
- sprockets (~> 2.8)
125
- sqlite3 (1.3.9)
126
- sqlite3-ruby (1.3.3)
127
- sqlite3 (>= 1.3.3)
128
- thor (0.19.1)
129
- thread_safe (0.3.3)
130
- tilt (1.4.1)
131
- treetop (1.4.15)
132
- polyglot
133
- polyglot (>= 0.3.1)
134
- tzinfo (1.1.0)
135
- thread_safe (~> 0.1)
136
-
137
- PLATFORMS
138
- ruby
139
-
140
- DEPENDENCIES
141
- bcrypt (~> 3.1.7)
142
- pry-meta
143
- rspec-rails (= 3.0.0.beta2)
144
- simple_auth!
145
- sqlite3-ruby
@@ -1,151 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- simple_auth (2.0.0)
5
- rails (>= 3.1.0)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- actionmailer (3.1.12)
11
- actionpack (= 3.1.12)
12
- mail (~> 2.4.4)
13
- actionpack (3.1.12)
14
- activemodel (= 3.1.12)
15
- activesupport (= 3.1.12)
16
- builder (~> 3.0.0)
17
- erubis (~> 2.7.0)
18
- i18n (~> 0.6)
19
- rack (~> 1.3.6)
20
- rack-cache (~> 1.2)
21
- rack-mount (~> 0.8.2)
22
- rack-test (~> 0.6.1)
23
- sprockets (~> 2.0.4)
24
- activemodel (3.1.12)
25
- activesupport (= 3.1.12)
26
- builder (~> 3.0.0)
27
- i18n (~> 0.6)
28
- activerecord (3.1.12)
29
- activemodel (= 3.1.12)
30
- activesupport (= 3.1.12)
31
- arel (~> 2.2.3)
32
- tzinfo (~> 0.3.29)
33
- activeresource (3.1.12)
34
- activemodel (= 3.1.12)
35
- activesupport (= 3.1.12)
36
- activesupport (3.1.12)
37
- multi_json (~> 1.0)
38
- arel (2.2.3)
39
- awesome_print (1.2.0)
40
- bcrypt (3.1.7)
41
- bcrypt-ruby (3.0.1)
42
- builder (3.0.4)
43
- coderay (1.1.0)
44
- columnize (0.3.6)
45
- debugger (1.6.6)
46
- columnize (>= 0.3.1)
47
- debugger-linecache (~> 1.2.0)
48
- debugger-ruby_core_source (~> 1.3.2)
49
- debugger-linecache (1.2.0)
50
- debugger-ruby_core_source (1.3.2)
51
- diff-lcs (1.2.5)
52
- erubis (2.7.0)
53
- hike (1.2.3)
54
- i18n (0.6.9)
55
- json (1.8.1)
56
- mail (2.4.4)
57
- i18n (>= 0.4.0)
58
- mime-types (~> 1.16)
59
- treetop (~> 1.4.8)
60
- method_source (0.8.2)
61
- mime-types (1.25.1)
62
- multi_json (1.9.2)
63
- polyglot (0.3.4)
64
- pry (0.9.12.6)
65
- coderay (~> 1.0)
66
- method_source (~> 0.8)
67
- slop (~> 3.4)
68
- pry-debugger (0.2.2)
69
- debugger (~> 1.3)
70
- pry (~> 0.9.10)
71
- pry-meta (0.0.6)
72
- awesome_print
73
- pry
74
- pry-debugger
75
- pry-remote
76
- pry-remote (0.1.8)
77
- pry (~> 0.9)
78
- slop (~> 3.0)
79
- rack (1.3.10)
80
- rack-cache (1.2)
81
- rack (>= 0.4)
82
- rack-mount (0.8.3)
83
- rack (>= 1.0.0)
84
- rack-ssl (1.3.3)
85
- rack
86
- rack-test (0.6.2)
87
- rack (>= 1.0)
88
- rails (3.1.12)
89
- actionmailer (= 3.1.12)
90
- actionpack (= 3.1.12)
91
- activerecord (= 3.1.12)
92
- activeresource (= 3.1.12)
93
- activesupport (= 3.1.12)
94
- bundler (~> 1.0)
95
- railties (= 3.1.12)
96
- railties (3.1.12)
97
- actionpack (= 3.1.12)
98
- activesupport (= 3.1.12)
99
- rack-ssl (~> 1.3.2)
100
- rake (>= 0.8.7)
101
- rdoc (~> 3.4)
102
- thor (~> 0.14.6)
103
- rake (10.3.1)
104
- rdoc (3.12.2)
105
- json (~> 1.4)
106
- rspec-collection_matchers (0.0.3)
107
- rspec-expectations (>= 2.99.0.beta1)
108
- rspec-core (3.0.0.beta2)
109
- rspec-support (= 3.0.0.beta2)
110
- rspec-expectations (3.0.0.beta2)
111
- diff-lcs (>= 1.2.0, < 2.0)
112
- rspec-support (= 3.0.0.beta2)
113
- rspec-mocks (3.0.0.beta2)
114
- rspec-support (= 3.0.0.beta2)
115
- rspec-rails (3.0.0.beta2)
116
- actionpack (>= 3.0)
117
- activemodel (>= 3.0)
118
- activesupport (>= 3.0)
119
- railties (>= 3.0)
120
- rspec-collection_matchers
121
- rspec-core (= 3.0.0.beta2)
122
- rspec-expectations (= 3.0.0.beta2)
123
- rspec-mocks (= 3.0.0.beta2)
124
- rspec-support (= 3.0.0.beta2)
125
- rspec-support (3.0.0.beta2)
126
- slop (3.5.0)
127
- sprockets (2.0.4)
128
- hike (~> 1.2)
129
- rack (~> 1.0)
130
- tilt (~> 1.1, != 1.3.0)
131
- sqlite3 (1.3.9)
132
- sqlite3-ruby (1.3.3)
133
- sqlite3 (>= 1.3.3)
134
- thor (0.14.6)
135
- tilt (1.4.1)
136
- treetop (1.4.15)
137
- polyglot
138
- polyglot (>= 0.3.1)
139
- tzinfo (0.3.39)
140
-
141
- PLATFORMS
142
- ruby
143
-
144
- DEPENDENCIES
145
- bcrypt (~> 3.1.7)
146
- bcrypt-ruby (~> 3.0.0)
147
- pry-meta
148
- rails (~> 3.1.0)
149
- rspec-rails (= 3.0.0.beta2)
150
- simple_auth!
151
- sqlite3-ruby
@@ -1,149 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- simple_auth (2.0.0)
5
- rails (>= 3.1.0)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- actionmailer (3.2.17)
11
- actionpack (= 3.2.17)
12
- mail (~> 2.5.4)
13
- actionpack (3.2.17)
14
- activemodel (= 3.2.17)
15
- activesupport (= 3.2.17)
16
- builder (~> 3.0.0)
17
- erubis (~> 2.7.0)
18
- journey (~> 1.0.4)
19
- rack (~> 1.4.5)
20
- rack-cache (~> 1.2)
21
- rack-test (~> 0.6.1)
22
- sprockets (~> 2.2.1)
23
- activemodel (3.2.17)
24
- activesupport (= 3.2.17)
25
- builder (~> 3.0.0)
26
- activerecord (3.2.17)
27
- activemodel (= 3.2.17)
28
- activesupport (= 3.2.17)
29
- arel (~> 3.0.2)
30
- tzinfo (~> 0.3.29)
31
- activeresource (3.2.17)
32
- activemodel (= 3.2.17)
33
- activesupport (= 3.2.17)
34
- activesupport (3.2.17)
35
- i18n (~> 0.6, >= 0.6.4)
36
- multi_json (~> 1.0)
37
- arel (3.0.3)
38
- awesome_print (1.2.0)
39
- bcrypt (3.1.7)
40
- bcrypt-ruby (3.0.1)
41
- builder (3.0.4)
42
- coderay (1.1.0)
43
- columnize (0.3.6)
44
- debugger (1.6.6)
45
- columnize (>= 0.3.1)
46
- debugger-linecache (~> 1.2.0)
47
- debugger-ruby_core_source (~> 1.3.2)
48
- debugger-linecache (1.2.0)
49
- debugger-ruby_core_source (1.3.2)
50
- diff-lcs (1.2.5)
51
- erubis (2.7.0)
52
- hike (1.2.3)
53
- i18n (0.6.9)
54
- journey (1.0.4)
55
- json (1.8.1)
56
- mail (2.5.4)
57
- mime-types (~> 1.16)
58
- treetop (~> 1.4.8)
59
- method_source (0.8.2)
60
- mime-types (1.25.1)
61
- multi_json (1.9.2)
62
- polyglot (0.3.4)
63
- pry (0.9.12.6)
64
- coderay (~> 1.0)
65
- method_source (~> 0.8)
66
- slop (~> 3.4)
67
- pry-debugger (0.2.2)
68
- debugger (~> 1.3)
69
- pry (~> 0.9.10)
70
- pry-meta (0.0.6)
71
- awesome_print
72
- pry
73
- pry-debugger
74
- pry-remote
75
- pry-remote (0.1.8)
76
- pry (~> 0.9)
77
- slop (~> 3.0)
78
- rack (1.4.5)
79
- rack-cache (1.2)
80
- rack (>= 0.4)
81
- rack-ssl (1.3.3)
82
- rack
83
- rack-test (0.6.2)
84
- rack (>= 1.0)
85
- rails (3.2.17)
86
- actionmailer (= 3.2.17)
87
- actionpack (= 3.2.17)
88
- activerecord (= 3.2.17)
89
- activeresource (= 3.2.17)
90
- activesupport (= 3.2.17)
91
- bundler (~> 1.0)
92
- railties (= 3.2.17)
93
- railties (3.2.17)
94
- actionpack (= 3.2.17)
95
- activesupport (= 3.2.17)
96
- rack-ssl (~> 1.3.2)
97
- rake (>= 0.8.7)
98
- rdoc (~> 3.4)
99
- thor (>= 0.14.6, < 2.0)
100
- rake (10.3.1)
101
- rdoc (3.12.2)
102
- json (~> 1.4)
103
- rspec-collection_matchers (0.0.3)
104
- rspec-expectations (>= 2.99.0.beta1)
105
- rspec-core (3.0.0.beta2)
106
- rspec-support (= 3.0.0.beta2)
107
- rspec-expectations (3.0.0.beta2)
108
- diff-lcs (>= 1.2.0, < 2.0)
109
- rspec-support (= 3.0.0.beta2)
110
- rspec-mocks (3.0.0.beta2)
111
- rspec-support (= 3.0.0.beta2)
112
- rspec-rails (3.0.0.beta2)
113
- actionpack (>= 3.0)
114
- activemodel (>= 3.0)
115
- activesupport (>= 3.0)
116
- railties (>= 3.0)
117
- rspec-collection_matchers
118
- rspec-core (= 3.0.0.beta2)
119
- rspec-expectations (= 3.0.0.beta2)
120
- rspec-mocks (= 3.0.0.beta2)
121
- rspec-support (= 3.0.0.beta2)
122
- rspec-support (3.0.0.beta2)
123
- slop (3.5.0)
124
- sprockets (2.2.2)
125
- hike (~> 1.2)
126
- multi_json (~> 1.0)
127
- rack (~> 1.0)
128
- tilt (~> 1.1, != 1.3.0)
129
- sqlite3 (1.3.9)
130
- sqlite3-ruby (1.3.3)
131
- sqlite3 (>= 1.3.3)
132
- thor (0.19.1)
133
- tilt (1.4.1)
134
- treetop (1.4.15)
135
- polyglot
136
- polyglot (>= 0.3.1)
137
- tzinfo (0.3.39)
138
-
139
- PLATFORMS
140
- ruby
141
-
142
- DEPENDENCIES
143
- bcrypt (~> 3.1.7)
144
- bcrypt-ruby (~> 3.0.0)
145
- pry-meta
146
- rails (~> 3.2.0)
147
- rspec-rails (= 3.0.0.beta2)
148
- simple_auth!
149
- sqlite3-ruby
@@ -1,140 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- simple_auth (2.0.0)
5
- rails (>= 3.1.0)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- actionmailer (4.0.4)
11
- actionpack (= 4.0.4)
12
- mail (~> 2.5.4)
13
- actionpack (4.0.4)
14
- activesupport (= 4.0.4)
15
- builder (~> 3.1.0)
16
- erubis (~> 2.7.0)
17
- rack (~> 1.5.2)
18
- rack-test (~> 0.6.2)
19
- activemodel (4.0.4)
20
- activesupport (= 4.0.4)
21
- builder (~> 3.1.0)
22
- activerecord (4.0.4)
23
- activemodel (= 4.0.4)
24
- activerecord-deprecated_finders (~> 1.0.2)
25
- activesupport (= 4.0.4)
26
- arel (~> 4.0.0)
27
- activerecord-deprecated_finders (1.0.3)
28
- activesupport (4.0.4)
29
- i18n (~> 0.6, >= 0.6.9)
30
- minitest (~> 4.2)
31
- multi_json (~> 1.3)
32
- thread_safe (~> 0.1)
33
- tzinfo (~> 0.3.37)
34
- arel (4.0.2)
35
- awesome_print (1.2.0)
36
- bcrypt (3.1.7)
37
- builder (3.1.4)
38
- coderay (1.1.0)
39
- columnize (0.3.6)
40
- debugger (1.6.6)
41
- columnize (>= 0.3.1)
42
- debugger-linecache (~> 1.2.0)
43
- debugger-ruby_core_source (~> 1.3.2)
44
- debugger-linecache (1.2.0)
45
- debugger-ruby_core_source (1.3.2)
46
- diff-lcs (1.2.5)
47
- erubis (2.7.0)
48
- hike (1.2.3)
49
- i18n (0.6.9)
50
- mail (2.5.4)
51
- mime-types (~> 1.16)
52
- treetop (~> 1.4.8)
53
- method_source (0.8.2)
54
- mime-types (1.25.1)
55
- minitest (4.7.5)
56
- multi_json (1.9.2)
57
- polyglot (0.3.4)
58
- pry (0.9.12.6)
59
- coderay (~> 1.0)
60
- method_source (~> 0.8)
61
- slop (~> 3.4)
62
- pry-debugger (0.2.2)
63
- debugger (~> 1.3)
64
- pry (~> 0.9.10)
65
- pry-meta (0.0.6)
66
- awesome_print
67
- pry
68
- pry-debugger
69
- pry-remote
70
- pry-remote (0.1.8)
71
- pry (~> 0.9)
72
- slop (~> 3.0)
73
- rack (1.5.2)
74
- rack-test (0.6.2)
75
- rack (>= 1.0)
76
- rails (4.0.4)
77
- actionmailer (= 4.0.4)
78
- actionpack (= 4.0.4)
79
- activerecord (= 4.0.4)
80
- activesupport (= 4.0.4)
81
- bundler (>= 1.3.0, < 2.0)
82
- railties (= 4.0.4)
83
- sprockets-rails (~> 2.0.0)
84
- railties (4.0.4)
85
- actionpack (= 4.0.4)
86
- activesupport (= 4.0.4)
87
- rake (>= 0.8.7)
88
- thor (>= 0.18.1, < 2.0)
89
- rake (10.3.1)
90
- rspec-collection_matchers (0.0.3)
91
- rspec-expectations (>= 2.99.0.beta1)
92
- rspec-core (3.0.0.beta2)
93
- rspec-support (= 3.0.0.beta2)
94
- rspec-expectations (3.0.0.beta2)
95
- diff-lcs (>= 1.2.0, < 2.0)
96
- rspec-support (= 3.0.0.beta2)
97
- rspec-mocks (3.0.0.beta2)
98
- rspec-support (= 3.0.0.beta2)
99
- rspec-rails (3.0.0.beta2)
100
- actionpack (>= 3.0)
101
- activemodel (>= 3.0)
102
- activesupport (>= 3.0)
103
- railties (>= 3.0)
104
- rspec-collection_matchers
105
- rspec-core (= 3.0.0.beta2)
106
- rspec-expectations (= 3.0.0.beta2)
107
- rspec-mocks (= 3.0.0.beta2)
108
- rspec-support (= 3.0.0.beta2)
109
- rspec-support (3.0.0.beta2)
110
- slop (3.5.0)
111
- sprockets (2.12.1)
112
- hike (~> 1.2)
113
- multi_json (~> 1.0)
114
- rack (~> 1.0)
115
- tilt (~> 1.1, != 1.3.0)
116
- sprockets-rails (2.0.1)
117
- actionpack (>= 3.0)
118
- activesupport (>= 3.0)
119
- sprockets (~> 2.8)
120
- sqlite3 (1.3.9)
121
- sqlite3-ruby (1.3.3)
122
- sqlite3 (>= 1.3.3)
123
- thor (0.19.1)
124
- thread_safe (0.3.3)
125
- tilt (1.4.1)
126
- treetop (1.4.15)
127
- polyglot
128
- polyglot (>= 0.3.1)
129
- tzinfo (0.3.39)
130
-
131
- PLATFORMS
132
- ruby
133
-
134
- DEPENDENCIES
135
- bcrypt (~> 3.1.7)
136
- pry-meta
137
- rails (~> 4.0.0)
138
- rspec-rails (= 3.0.0.beta2)
139
- simple_auth!
140
- sqlite3-ruby
@@ -1,146 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- simple_auth (2.0.0)
5
- rails (>= 3.1.0)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- actionmailer (4.1.0)
11
- actionpack (= 4.1.0)
12
- actionview (= 4.1.0)
13
- mail (~> 2.5.4)
14
- actionpack (4.1.0)
15
- actionview (= 4.1.0)
16
- activesupport (= 4.1.0)
17
- rack (~> 1.5.2)
18
- rack-test (~> 0.6.2)
19
- actionview (4.1.0)
20
- activesupport (= 4.1.0)
21
- builder (~> 3.1)
22
- erubis (~> 2.7.0)
23
- activemodel (4.1.0)
24
- activesupport (= 4.1.0)
25
- builder (~> 3.1)
26
- activerecord (4.1.0)
27
- activemodel (= 4.1.0)
28
- activesupport (= 4.1.0)
29
- arel (~> 5.0.0)
30
- activesupport (4.1.0)
31
- i18n (~> 0.6, >= 0.6.9)
32
- json (~> 1.7, >= 1.7.7)
33
- minitest (~> 5.1)
34
- thread_safe (~> 0.1)
35
- tzinfo (~> 1.1)
36
- arel (5.0.1.20140414130214)
37
- awesome_print (1.2.0)
38
- bcrypt (3.1.7)
39
- builder (3.2.2)
40
- coderay (1.1.0)
41
- columnize (0.3.6)
42
- debugger (1.6.6)
43
- columnize (>= 0.3.1)
44
- debugger-linecache (~> 1.2.0)
45
- debugger-ruby_core_source (~> 1.3.2)
46
- debugger-linecache (1.2.0)
47
- debugger-ruby_core_source (1.3.2)
48
- diff-lcs (1.2.5)
49
- erubis (2.7.0)
50
- hike (1.2.3)
51
- i18n (0.6.9)
52
- json (1.8.1)
53
- mail (2.5.4)
54
- mime-types (~> 1.16)
55
- treetop (~> 1.4.8)
56
- method_source (0.8.2)
57
- mime-types (1.25.1)
58
- minitest (5.3.3)
59
- multi_json (1.9.2)
60
- polyglot (0.3.4)
61
- pry (0.9.12.6)
62
- coderay (~> 1.0)
63
- method_source (~> 0.8)
64
- slop (~> 3.4)
65
- pry-debugger (0.2.2)
66
- debugger (~> 1.3)
67
- pry (~> 0.9.10)
68
- pry-meta (0.0.6)
69
- awesome_print
70
- pry
71
- pry-debugger
72
- pry-remote
73
- pry-remote (0.1.8)
74
- pry (~> 0.9)
75
- slop (~> 3.0)
76
- rack (1.5.2)
77
- rack-test (0.6.2)
78
- rack (>= 1.0)
79
- rails (4.1.0)
80
- actionmailer (= 4.1.0)
81
- actionpack (= 4.1.0)
82
- actionview (= 4.1.0)
83
- activemodel (= 4.1.0)
84
- activerecord (= 4.1.0)
85
- activesupport (= 4.1.0)
86
- bundler (>= 1.3.0, < 2.0)
87
- railties (= 4.1.0)
88
- sprockets-rails (~> 2.0)
89
- railties (4.1.0)
90
- actionpack (= 4.1.0)
91
- activesupport (= 4.1.0)
92
- rake (>= 0.8.7)
93
- thor (>= 0.18.1, < 2.0)
94
- rake (10.3.1)
95
- rspec-collection_matchers (0.0.3)
96
- rspec-expectations (>= 2.99.0.beta1)
97
- rspec-core (3.0.0.beta2)
98
- rspec-support (= 3.0.0.beta2)
99
- rspec-expectations (3.0.0.beta2)
100
- diff-lcs (>= 1.2.0, < 2.0)
101
- rspec-support (= 3.0.0.beta2)
102
- rspec-mocks (3.0.0.beta2)
103
- rspec-support (= 3.0.0.beta2)
104
- rspec-rails (3.0.0.beta2)
105
- actionpack (>= 3.0)
106
- activemodel (>= 3.0)
107
- activesupport (>= 3.0)
108
- railties (>= 3.0)
109
- rspec-collection_matchers
110
- rspec-core (= 3.0.0.beta2)
111
- rspec-expectations (= 3.0.0.beta2)
112
- rspec-mocks (= 3.0.0.beta2)
113
- rspec-support (= 3.0.0.beta2)
114
- rspec-support (3.0.0.beta2)
115
- slop (3.5.0)
116
- sprockets (2.12.1)
117
- hike (~> 1.2)
118
- multi_json (~> 1.0)
119
- rack (~> 1.0)
120
- tilt (~> 1.1, != 1.3.0)
121
- sprockets-rails (2.1.3)
122
- actionpack (>= 3.0)
123
- activesupport (>= 3.0)
124
- sprockets (~> 2.8)
125
- sqlite3 (1.3.9)
126
- sqlite3-ruby (1.3.3)
127
- sqlite3 (>= 1.3.3)
128
- thor (0.19.1)
129
- thread_safe (0.3.3)
130
- tilt (1.4.1)
131
- treetop (1.4.15)
132
- polyglot
133
- polyglot (>= 0.3.1)
134
- tzinfo (1.1.0)
135
- thread_safe (~> 0.1)
136
-
137
- PLATFORMS
138
- ruby
139
-
140
- DEPENDENCIES
141
- bcrypt (~> 3.1.7)
142
- pry-meta
143
- rails (~> 4.1.0)
144
- rspec-rails (= 3.0.0.beta2)
145
- simple_auth!
146
- sqlite3-ruby