RubyApp 0.6.49 → 0.6.50
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/.gitignore +2 -0
- data/lib/ruby_app/elements.rb +1 -0
- data/lib/ruby_app/elements/mobile/document.rb +2 -2
- data/lib/ruby_app/elements/mobile/documents/authentication/authentication_document.css.haml +2 -0
- data/lib/ruby_app/elements/mobile/documents/authentication/authentication_document.js.haml +2 -0
- data/lib/ruby_app/elements/mobile/documents/authentication/authentication_document.rb +34 -0
- data/lib/ruby_app/elements/mobile/documents/authentication/authentication_page.css.haml +2 -0
- data/lib/ruby_app/elements/mobile/documents/authentication/authentication_page.html.haml +7 -0
- data/lib/ruby_app/elements/mobile/documents/authentication/authentication_page.js.haml +2 -0
- data/lib/ruby_app/elements/mobile/documents/authentication/authentication_page.rb +35 -0
- data/lib/ruby_app/elements/mobile/documents/authentication/facebook/authentication_document.rb +3 -3
- data/lib/ruby_app/elements/mobile/documents/authentication/o_auth/authentication_document.rb +3 -3
- data/lib/ruby_app/elements/mobile/documents/authentication/open_id/authentication_document.rb +4 -3
- data/lib/ruby_app/elements/mobile/navigation/close_button.html.haml +1 -0
- data/lib/ruby_app/elements/mobile/navigation/close_button.rb +33 -0
- data/lib/ruby_app/exceptions.rb +1 -0
- data/lib/ruby_app/exceptions/authentication_failed_exception.rb +16 -0
- data/lib/ruby_app/scripts/elements/authentications/facebook.rb +2 -0
- data/lib/ruby_app/scripts/elements/authentications/o_auth/git_hub.rb +2 -0
- data/lib/ruby_app/scripts/elements/authentications/open_id/google.rb +2 -0
- data/lib/ruby_app/scripts/elements/authentications/open_id/my_open_id.rb +2 -0
- data/lib/ruby_app/scripts/elements/authentications/open_id/yahoo.rb +2 -0
- data/lib/ruby_app/translations/en.yml +2 -0
- data/lib/ruby_app/version.rb +1 -1
- data/ruby_app.sublime-project +1 -1
- data/ruby_app.sublime-workspace +58 -1
- metadata +14 -4
data/.gitignore
CHANGED
data/lib/ruby_app/elements.rb
CHANGED
@@ -25,6 +25,7 @@ require 'ruby_app/elements/mobile/inputs/toggle_input'
|
|
25
25
|
require 'ruby_app/elements/mobile/link'
|
26
26
|
require 'ruby_app/elements/mobile/list'
|
27
27
|
require 'ruby_app/elements/mobile/navigation/back_button'
|
28
|
+
require 'ruby_app/elements/mobile/navigation/close_button'
|
28
29
|
require 'ruby_app/elements/mobile/navigation/navigation_button'
|
29
30
|
require 'ruby_app/elements/mobile/navigation/navigation_link'
|
30
31
|
require 'ruby_app/elements/mobile/navigation/navigation_list'
|
@@ -45,8 +45,8 @@ module RubyApp
|
|
45
45
|
|
46
46
|
@stylesheets.push('http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.css')
|
47
47
|
|
48
|
-
@scripts.push('http://code.jquery.com/jquery-1.
|
49
|
-
@scripts.push('http://code.jquery.com/ui/1.
|
48
|
+
@scripts.push('http://code.jquery.com/jquery-1.8.3.min.js')
|
49
|
+
@scripts.push('http://code.jquery.com/ui/1.9.2/jquery-ui.min.js')
|
50
50
|
@scripts.push('/ruby_app/resources/elements/mobile/document/jquery.ui.touch-punch.min.js')
|
51
51
|
@scripts.push('/ruby_app/resources/elements/mobile/document/document.js')
|
52
52
|
@scripts.push('http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.js')
|
@@ -0,0 +1,34 @@
|
|
1
|
+
module RubyApp
|
2
|
+
|
3
|
+
module Elements
|
4
|
+
|
5
|
+
module Mobile
|
6
|
+
|
7
|
+
module Documents
|
8
|
+
|
9
|
+
module Authentication
|
10
|
+
require 'ruby_app/elements/mobile/documents/authentication/authentication_page'
|
11
|
+
require 'ruby_app/elements/mobile/document'
|
12
|
+
|
13
|
+
class AuthenticationDocument < RubyApp::Elements::Mobile::Document
|
14
|
+
|
15
|
+
template_path(:all, File.dirname(__FILE__))
|
16
|
+
|
17
|
+
def initialize
|
18
|
+
super
|
19
|
+
|
20
|
+
self.pages.push(RubyApp::Elements::Mobile::Documents::Authentication::AuthenticationPage.new)
|
21
|
+
|
22
|
+
end
|
23
|
+
|
24
|
+
end
|
25
|
+
|
26
|
+
end
|
27
|
+
|
28
|
+
end
|
29
|
+
|
30
|
+
end
|
31
|
+
|
32
|
+
end
|
33
|
+
|
34
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
module RubyApp
|
2
|
+
|
3
|
+
module Elements
|
4
|
+
|
5
|
+
module Mobile
|
6
|
+
|
7
|
+
module Documents
|
8
|
+
|
9
|
+
module Authentication
|
10
|
+
require 'ruby_app/elements/mobile/navigation/close_button'
|
11
|
+
require 'ruby_app/elements/mobile/page'
|
12
|
+
|
13
|
+
class AuthenticationPage < RubyApp::Elements::Mobile::Page
|
14
|
+
|
15
|
+
template_path(:all, File.dirname(__FILE__))
|
16
|
+
|
17
|
+
def initialize
|
18
|
+
super
|
19
|
+
|
20
|
+
@close_button = RubyApp::Elements::Mobile::Navigation::CloseButton.new
|
21
|
+
@close_button.attributes.merge!('class' => 'ui-btn-right')
|
22
|
+
|
23
|
+
end
|
24
|
+
|
25
|
+
end
|
26
|
+
|
27
|
+
end
|
28
|
+
|
29
|
+
end
|
30
|
+
|
31
|
+
end
|
32
|
+
|
33
|
+
end
|
34
|
+
|
35
|
+
end
|
data/lib/ruby_app/elements/mobile/documents/authentication/facebook/authentication_document.rb
CHANGED
@@ -15,16 +15,16 @@ module RubyApp
|
|
15
15
|
|
16
16
|
module Facebook
|
17
17
|
require 'ruby_app'
|
18
|
-
require 'ruby_app/elements/mobile/
|
18
|
+
require 'ruby_app/elements/mobile/documents/authentication/authentication_document'
|
19
19
|
|
20
|
-
class AuthenticationDocument < RubyApp::Elements::Mobile::
|
20
|
+
class AuthenticationDocument < RubyApp::Elements::Mobile::Documents::Authentication::AuthenticationDocument
|
21
21
|
|
22
22
|
template_path(:all, File.dirname(__FILE__))
|
23
23
|
|
24
24
|
def initialize(permissions)
|
25
25
|
super()
|
26
26
|
|
27
|
-
self.loaded do |element, event|
|
27
|
+
self.page.loaded do |element, event|
|
28
28
|
unless @authentication
|
29
29
|
RubyApp::Log.debug("FACEBOOK permissions=#{permissions.inspect}")
|
30
30
|
@authentication = ::Koala::Facebook::OAuth.new(ENV['FACEBOOK_ACCESS_KEY'] || RubyApp::Elements::Mobile::Documents::Authentication::Facebook::AuthenticationDocument.configuration.access_key,
|
data/lib/ruby_app/elements/mobile/documents/authentication/o_auth/authentication_document.rb
CHANGED
@@ -15,16 +15,16 @@ module RubyApp
|
|
15
15
|
|
16
16
|
module OAuth
|
17
17
|
require 'ruby_app'
|
18
|
-
require 'ruby_app/elements/mobile/
|
18
|
+
require 'ruby_app/elements/mobile/documents/authentication/authentication_document'
|
19
19
|
|
20
|
-
class AuthenticationDocument < RubyApp::Elements::Mobile::
|
20
|
+
class AuthenticationDocument < RubyApp::Elements::Mobile::Documents::Authentication::AuthenticationDocument
|
21
21
|
|
22
22
|
template_path(:all, File.dirname(__FILE__))
|
23
23
|
|
24
24
|
def initialize(access_key, secret_key, scopes, options)
|
25
25
|
super()
|
26
26
|
|
27
|
-
self.loaded do |element, event|
|
27
|
+
self.page.loaded do |element, event|
|
28
28
|
unless @client
|
29
29
|
RubyApp::Log.debug("OAUTH scopes=#{scopes.inspect}")
|
30
30
|
RubyApp::Log.debug("OAUTH options=#{options.inspect}")
|
data/lib/ruby_app/elements/mobile/documents/authentication/open_id/authentication_document.rb
CHANGED
@@ -15,16 +15,16 @@ module RubyApp
|
|
15
15
|
|
16
16
|
module OpenId
|
17
17
|
require 'ruby_app'
|
18
|
-
require 'ruby_app/elements/mobile/
|
18
|
+
require 'ruby_app/elements/mobile/documents/authentication/authentication_document'
|
19
19
|
|
20
|
-
class AuthenticationDocument < RubyApp::Elements::Mobile::
|
20
|
+
class AuthenticationDocument < RubyApp::Elements::Mobile::Documents::Authentication::AuthenticationDocument
|
21
21
|
|
22
22
|
template_path(:all, File.dirname(__FILE__))
|
23
23
|
|
24
24
|
def initialize(identifier)
|
25
25
|
super()
|
26
26
|
|
27
|
-
self.loaded do |element, event|
|
27
|
+
self.page.loaded do |element, event|
|
28
28
|
unless @consumer
|
29
29
|
@consumer = ::OpenID::Consumer.new(RubyApp::Session.data, nil)
|
30
30
|
request = @consumer.begin(identifier)
|
@@ -41,6 +41,7 @@ module RubyApp
|
|
41
41
|
when ::OpenID::Consumer::FAILURE
|
42
42
|
RubyApp::Log.error("OPENID #{response.class}")
|
43
43
|
RubyApp::Log.error("OPENID #{response.message.inspect}")
|
44
|
+
raise RubyApp::Exceptions::AuthenticationFailedException.new(response.message)
|
44
45
|
end
|
45
46
|
self.hide(event)
|
46
47
|
end
|
@@ -0,0 +1 @@
|
|
1
|
+
- self.content_for(:html, :link, RubyApp::Elements::Mobile::Navigation::CloseButton.translate.close)
|
@@ -0,0 +1,33 @@
|
|
1
|
+
module RubyApp
|
2
|
+
|
3
|
+
module Elements
|
4
|
+
|
5
|
+
module Mobile
|
6
|
+
|
7
|
+
module Navigation
|
8
|
+
require 'ruby_app/elements/mobile/navigation/navigation_button'
|
9
|
+
|
10
|
+
class CloseButton < RubyApp::Elements::Mobile::Navigation::NavigationButton
|
11
|
+
|
12
|
+
template_path(:all, File.dirname(__FILE__))
|
13
|
+
|
14
|
+
def initialize
|
15
|
+
super
|
16
|
+
|
17
|
+
self.options.merge!(:reverse => 'true')
|
18
|
+
|
19
|
+
self.clicked do |element, event|
|
20
|
+
RubyApp::Session.documents.last.hide(event)
|
21
|
+
end
|
22
|
+
|
23
|
+
end
|
24
|
+
|
25
|
+
end
|
26
|
+
|
27
|
+
end
|
28
|
+
|
29
|
+
end
|
30
|
+
|
31
|
+
end
|
32
|
+
|
33
|
+
end
|
data/lib/ruby_app/exceptions.rb
CHANGED
@@ -3,6 +3,8 @@ load_script! 'common/features/authentications'
|
|
3
3
|
add_step! (RubyApp::Element::Event) { |event| event.go('/') }
|
4
4
|
add_step! (RubyApp::Elements::Mobile::Page::LoadedEvent) { |event| event.assert_exists_link('Facebook') }
|
5
5
|
add_step! (RubyApp::Element::AssertedEvent) { |event| event.click_link('Facebook') }
|
6
|
+
add_step! (RubyApp::Elements::Mobile::Page::LoadedEvent)
|
7
|
+
add_step! (RubyApp::Elements::Mobile::Page::LoadedEvent)
|
6
8
|
add_step! (RubyApp::Elements::Mobile::Page::LoadedEvent) { |event| event.assert_exists_text('You are logged in as') }
|
7
9
|
add_step! (RubyApp::Element::AssertedEvent) { |event| event.click_link('Back') }
|
8
10
|
add_step! (RubyApp::Elements::Mobile::Page::ShownEvent) { |event| event.click_link('Back') }
|
@@ -2,6 +2,8 @@ load_script! 'common/features/authentications'
|
|
2
2
|
|
3
3
|
add_step! (RubyApp::Element::Event) { |event| event.assert_exists_link('GitHub') }
|
4
4
|
add_step! (RubyApp::Element::AssertedEvent) { |event| event.click_link('GitHub') }
|
5
|
+
add_step! (RubyApp::Elements::Mobile::Page::LoadedEvent)
|
6
|
+
add_step! (RubyApp::Elements::Mobile::Page::LoadedEvent)
|
5
7
|
add_step! (RubyApp::Elements::Mobile::Page::LoadedEvent) { |event| event.assert_exists_text('You are logged in as') }
|
6
8
|
add_step! (RubyApp::Element::AssertedEvent) { |event| event.click_link('Back') }
|
7
9
|
add_step! (RubyApp::Elements::Mobile::Page::ShownEvent) { |event| event.click_link('Back') }
|
@@ -2,6 +2,8 @@ load_script! 'common/features/authentications'
|
|
2
2
|
|
3
3
|
add_step! (RubyApp::Element::Event) { |event| event.assert_exists_link('Google') }
|
4
4
|
add_step! (RubyApp::Element::AssertedEvent) { |event| event.click_link('Google') }
|
5
|
+
add_step! (RubyApp::Elements::Mobile::Page::LoadedEvent)
|
6
|
+
add_step! (RubyApp::Elements::Mobile::Page::LoadedEvent)
|
5
7
|
add_step! (RubyApp::Elements::Mobile::Page::LoadedEvent) { |event| event.assert_exists_text('You are logged in as') }
|
6
8
|
add_step! (RubyApp::Element::AssertedEvent) { |event| event.click_link('Back') }
|
7
9
|
add_step! (RubyApp::Elements::Mobile::Page::ShownEvent) { |event| event.click_link('Back') }
|
@@ -2,6 +2,8 @@ load_script! 'common/features/authentications'
|
|
2
2
|
|
3
3
|
add_step! (RubyApp::Element::Event) { |event| event.assert_exists_link('myOpenID') }
|
4
4
|
add_step! (RubyApp::Element::AssertedEvent) { |event| event.click_link('myOpenID') }
|
5
|
+
add_step! (RubyApp::Elements::Mobile::Page::LoadedEvent)
|
6
|
+
add_step! (RubyApp::Elements::Mobile::Page::LoadedEvent)
|
5
7
|
add_step! (RubyApp::Elements::Mobile::Page::LoadedEvent) { |event| event.assert_exists_text('You are logged in as') }
|
6
8
|
add_step! (RubyApp::Element::AssertedEvent) { |event| event.click_link('Back') }
|
7
9
|
add_step! (RubyApp::Elements::Mobile::Page::ShownEvent) { |event| event.click_link('Back') }
|
@@ -2,6 +2,8 @@ load_script! 'common/features/authentications'
|
|
2
2
|
|
3
3
|
add_step! (RubyApp::Element::Event) { |event| event.assert_exists_link('Yahoo!') }
|
4
4
|
add_step! (RubyApp::Element::AssertedEvent) { |event| event.click_link('Yahoo!') }
|
5
|
+
add_step! (RubyApp::Elements::Mobile::Page::LoadedEvent)
|
6
|
+
add_step! (RubyApp::Elements::Mobile::Page::LoadedEvent)
|
5
7
|
add_step! (RubyApp::Elements::Mobile::Page::LoadedEvent) { |event| event.assert_exists_text('You are logged in as') }
|
6
8
|
add_step! (RubyApp::Element::AssertedEvent) { |event| event.click_link('Back') }
|
7
9
|
add_step! (RubyApp::Elements::Mobile::Page::ShownEvent) { |event| event.click_link('Back') }
|
data/lib/ruby_app/version.rb
CHANGED
data/ruby_app.sublime-project
CHANGED
data/ruby_app.sublime-workspace
CHANGED
@@ -3,6 +3,10 @@
|
|
3
3
|
{
|
4
4
|
"selected_items":
|
5
5
|
[
|
6
|
+
[
|
7
|
+
"A",
|
8
|
+
"Authentication"
|
9
|
+
]
|
6
10
|
]
|
7
11
|
},
|
8
12
|
"buffers":
|
@@ -32,6 +36,53 @@
|
|
32
36
|
},
|
33
37
|
"file_history":
|
34
38
|
[
|
39
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app/lib/ruby_app/elements/mobile/documents/authentication/authentication_page.html.haml",
|
40
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app/lib/ruby_app/elements/mobile/documents/authentication/facebook/authentication_document.rb",
|
41
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app/lib/ruby_app/elements/mobile/documents/authentication/authentication_document.rb",
|
42
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app/lib/ruby_app/elements/mobile/documents/authentication/authentication_page.rb",
|
43
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app/lib/ruby_app/elements/mobile/navigation/close_button.rb",
|
44
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app/lib/ruby_app/elements/mobile/navigation/hide_button.rb",
|
45
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app/lib/ruby_app/elements/mobile/default/default_document.rb",
|
46
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app/lib/ruby_app/rack/route.rb",
|
47
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app/lib/ruby_app/elements/mobile/page.rb",
|
48
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app/lib/ruby_app/elements/mobile/navigation/back_button.rb",
|
49
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app/lib/ruby_app/elements/mobile/default/features/buttons_page.rb",
|
50
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app/lib/ruby_app/elements/mobile/documents/authentication/authentication_document.css.haml",
|
51
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app/lib/ruby_app/elements/mobile/documents/authentication/authentication_document.js.haml",
|
52
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app/lib/ruby_app/elements/mobile/default/default_document.css.haml",
|
53
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app/lib/ruby_app/elements/mobile/platforms/ios/document.rb",
|
54
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app/lib/ruby_app/elements/mobile/document.css.haml",
|
55
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app/lib/ruby_app/elements/mobile/document.html.haml",
|
56
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app/lib/ruby_app/elements/mobile/document.js.haml",
|
57
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app/lib/ruby_app/elements/mobile/documents/authentication/authentication_page.js.haml",
|
58
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app/lib/ruby_app/elements/mobile/documents/authentication/authentication_page.css.haml",
|
59
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app/lib/ruby_app/elements/mobile/default/features/navigated_page.css.haml",
|
60
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app/lib/ruby_app/elements/mobile/default/features/authentication_success_page.rb",
|
61
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app/lib/ruby_app/elements/mobile/default/features/navigated_page.html.haml",
|
62
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app/lib/ruby_app/elements.rb",
|
63
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app/lib/ruby_app/elements/mobile/navigation/close_button.html.haml",
|
64
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app/lib/ruby_app/translations/en.yml",
|
65
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app/lib/ruby_app/elements/mobile/navigation/back_button.html.haml",
|
66
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app/lib/ruby_app/elements/mobile/navigation/page_button.rb",
|
67
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app/lib/ruby_app/elements/mobile/default/features/navigated_page.rb",
|
68
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app/lib/ruby_app/elements/mobile/documents/authentication/o_auth/authentication_document.rb",
|
69
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app/lib/ruby_app/elements/mobile/default/default_page.rb",
|
70
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app/lib/ruby_app/elements/mobile/documents/authentication/open_id/authentication_document.rb",
|
71
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app/lib/ruby_app/elements/mobile/documents/mail_document.html.haml",
|
72
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app/lib/ruby_app/elements/mobile/documents/authentication/facebook/email_authentication_document.rb",
|
73
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app/lib/ruby_app/configuration.yml",
|
74
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app/lib/ruby_app/elements/mobile/documents/authentication/open_id/yahoo_authentication_document.rb",
|
75
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app/lib/ruby_app/rack/response.rb",
|
76
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app/lib/ruby_app/exceptions.rb",
|
77
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app/lib/ruby_app/exceptions/authentication_failed_exception.rb",
|
78
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app/lib/ruby_app.rb",
|
79
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app/lib/ruby_app/element.rb",
|
80
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app/lib/ruby_app/exceptions/assert_failed_exception.rb",
|
81
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app/lib/ruby_app/elements/mobile/document.rb",
|
82
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app/lib/ruby_app/elements/mobile/documents/quit_document.rb",
|
83
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app/lib/ruby_app/elements/mobile/documents/mail_document.rb",
|
84
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app/.gitignore",
|
85
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app/ruby_app.sublime-workspace",
|
35
86
|
"/Users/fficnar/Dropbox/Projects/gems/ruby_app/lib/ruby_app/elements/mobile/list.rb",
|
36
87
|
"/Users/fficnar/Dropbox/Projects/gems/ruby_app/lib/ruby_app/elements/mobile/default/features/lists_page.rb",
|
37
88
|
"/Users/fficnar/Dropbox/Projects/gems/ruby_app/lib/ruby_app/elements/mobile/list.js.haml",
|
@@ -102,9 +153,10 @@
|
|
102
153
|
},
|
103
154
|
"find_in_files":
|
104
155
|
{
|
105
|
-
"height":
|
156
|
+
"height": 93.0,
|
106
157
|
"where_history":
|
107
158
|
[
|
159
|
+
"/Users/fficnar/Dropbox/Projects/Ruby/gems/ruby_app",
|
108
160
|
"<open files>",
|
109
161
|
"/Users/fficnar/Dropbox/Projects/pike"
|
110
162
|
]
|
@@ -114,6 +166,7 @@
|
|
114
166
|
"case_sensitive": false,
|
115
167
|
"find_history":
|
116
168
|
[
|
169
|
+
"/exceptions",
|
117
170
|
"MessageItem",
|
118
171
|
"indentation",
|
119
172
|
"full_",
|
@@ -187,6 +240,10 @@
|
|
187
240
|
"height": 0.0,
|
188
241
|
"selected_items":
|
189
242
|
[
|
243
|
+
[
|
244
|
+
"authentication_page",
|
245
|
+
"lib/ruby_app/elements/mobile/default/features/authentication_success_page.rb"
|
246
|
+
],
|
190
247
|
[
|
191
248
|
"facebook",
|
192
249
|
"lib/ruby_app/elements/mobile/documents/authentication/facebook/email_authentication_document.rb"
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: RubyApp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 99
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 6
|
9
|
-
-
|
10
|
-
version: 0.6.
|
9
|
+
- 50
|
10
|
+
version: 0.6.50
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Frank G. Ficnar
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date:
|
18
|
+
date: 2013-01-09 00:00:00 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
version_requirements: &id001 !ruby/object:Gem::Requirement
|
@@ -415,6 +415,13 @@ files:
|
|
415
415
|
- lib/ruby_app/elements/mobile/document.html.haml
|
416
416
|
- lib/ruby_app/elements/mobile/document.js.haml
|
417
417
|
- lib/ruby_app/elements/mobile/document.rb
|
418
|
+
- lib/ruby_app/elements/mobile/documents/authentication/authentication_document.css.haml
|
419
|
+
- lib/ruby_app/elements/mobile/documents/authentication/authentication_document.js.haml
|
420
|
+
- lib/ruby_app/elements/mobile/documents/authentication/authentication_document.rb
|
421
|
+
- lib/ruby_app/elements/mobile/documents/authentication/authentication_page.css.haml
|
422
|
+
- lib/ruby_app/elements/mobile/documents/authentication/authentication_page.html.haml
|
423
|
+
- lib/ruby_app/elements/mobile/documents/authentication/authentication_page.js.haml
|
424
|
+
- lib/ruby_app/elements/mobile/documents/authentication/authentication_page.rb
|
418
425
|
- lib/ruby_app/elements/mobile/documents/authentication/facebook/authentication_document.rb
|
419
426
|
- lib/ruby_app/elements/mobile/documents/authentication/facebook/email_authentication_document.rb
|
420
427
|
- lib/ruby_app/elements/mobile/documents/authentication/o_auth/authentication_document.rb
|
@@ -461,6 +468,8 @@ files:
|
|
461
468
|
- lib/ruby_app/elements/mobile/list_split_item.js.haml
|
462
469
|
- lib/ruby_app/elements/mobile/navigation/back_button.html.haml
|
463
470
|
- lib/ruby_app/elements/mobile/navigation/back_button.rb
|
471
|
+
- lib/ruby_app/elements/mobile/navigation/close_button.html.haml
|
472
|
+
- lib/ruby_app/elements/mobile/navigation/close_button.rb
|
464
473
|
- lib/ruby_app/elements/mobile/navigation/hide_button.rb
|
465
474
|
- lib/ruby_app/elements/mobile/navigation/navigation_button.rb
|
466
475
|
- lib/ruby_app/elements/mobile/navigation/navigation_link.rb
|
@@ -530,6 +539,7 @@ files:
|
|
530
539
|
- lib/ruby_app/exception.rb
|
531
540
|
- lib/ruby_app/exceptions.rb
|
532
541
|
- lib/ruby_app/exceptions/assert_failed_exception.rb
|
542
|
+
- lib/ruby_app/exceptions/authentication_failed_exception.rb
|
533
543
|
- lib/ruby_app/exceptions/element_invalid_exception.rb
|
534
544
|
- lib/ruby_app/exceptions/session_invalid_exception.rb
|
535
545
|
- lib/ruby_app/language.rb
|