parinoid checks for admin page thx dangold
This commit is contained in:
parent
801382714a
commit
eb9a943724
2 changed files with 12 additions and 10 deletions
12
Gemfile.lock
12
Gemfile.lock
|
|
@ -128,7 +128,7 @@ GEM
|
||||||
ohai (>= 0.5.7)
|
ohai (>= 0.5.7)
|
||||||
rest-client (>= 1.0.4, < 1.7.0)
|
rest-client (>= 1.0.4, < 1.7.0)
|
||||||
uuidtools
|
uuidtools
|
||||||
childprocess (0.1.6)
|
childprocess (0.1.7)
|
||||||
ffi (~> 0.6.3)
|
ffi (~> 0.6.3)
|
||||||
closure-compiler (1.0.0)
|
closure-compiler (1.0.0)
|
||||||
cloudfiles (1.4.10)
|
cloudfiles (1.4.10)
|
||||||
|
|
@ -336,17 +336,17 @@ GEM
|
||||||
rubyntlm (0.1.1)
|
rubyntlm (0.1.1)
|
||||||
rubyzip (0.9.4)
|
rubyzip (0.9.4)
|
||||||
selenium-client (1.2.18)
|
selenium-client (1.2.18)
|
||||||
selenium-rc (2.2.4)
|
selenium-rc (2.3.1)
|
||||||
selenium-client (>= 1.2.18)
|
selenium-client (>= 1.2.18)
|
||||||
selenium-webdriver (0.1.2)
|
selenium-webdriver (0.1.3)
|
||||||
childprocess (~> 0.1.5)
|
childprocess (~> 0.1.5)
|
||||||
ffi (~> 0.6.3)
|
ffi (~> 0.6.3)
|
||||||
json_pure
|
json_pure
|
||||||
rubyzip
|
rubyzip
|
||||||
simple_oauth (0.1.4)
|
simple_oauth (0.1.4)
|
||||||
sinatra (1.1.2)
|
sinatra (1.1.3)
|
||||||
rack (~> 1.1)
|
rack (~> 1.1)
|
||||||
tilt (~> 1.2)
|
tilt (>= 1.2.2, < 2.0)
|
||||||
subexec (0.0.4)
|
subexec (0.0.4)
|
||||||
systemu (1.2.0)
|
systemu (1.2.0)
|
||||||
term-ansicolor (1.0.5)
|
term-ansicolor (1.0.5)
|
||||||
|
|
@ -369,7 +369,7 @@ GEM
|
||||||
crack (>= 0.1.7)
|
crack (>= 0.1.7)
|
||||||
will_paginate (3.0.pre2)
|
will_paginate (3.0.pre2)
|
||||||
xml-simple (1.0.14)
|
xml-simple (1.0.14)
|
||||||
yui-compressor (0.9.3)
|
yui-compressor (0.9.4)
|
||||||
|
|
||||||
PLATFORMS
|
PLATFORMS
|
||||||
ruby
|
ruby
|
||||||
|
|
|
||||||
|
|
@ -30,10 +30,12 @@
|
||||||
= for user in @users
|
= for user in @users
|
||||||
= user.inspect
|
= user.inspect
|
||||||
%br
|
%br
|
||||||
= user.person.inspect
|
- if user.person
|
||||||
%br
|
= user.person.inspect
|
||||||
= user.person.profile.inspect
|
%br
|
||||||
%br
|
- if user.person.profile
|
||||||
|
= user.person.profile.inspect
|
||||||
|
%br
|
||||||
= "invite token: #{accept_invitation_url(user, :invitation_token => user.invitation_token)}" if user.invitation_token
|
= "invite token: #{accept_invitation_url(user, :invitation_token => user.invitation_token)}" if user.invitation_token
|
||||||
%br
|
%br
|
||||||
%br
|
%br
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue