-
Notifications
You must be signed in to change notification settings - Fork 151
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve naming of public API properties #126
Conversation
@ashfurrow CI is not triggered here as well. May be cause PR is not pointing to |
Argh, no I just hadn't configured it properly 😞 I've fixed the issue and redelivered the PR creation webhook to circle to trigger the build. Sorry about that! |
@@ -77,7 +77,7 @@ class ActionTests: QuickSpec { | |||
.bind(to: enabled) | |||
.disposed(by: disposeBag) | |||
|
|||
action.executing | |||
action.isExecuting |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wrong indentation
@@ -90,7 +90,7 @@ class ActionTests: QuickSpec { | |||
action.elements.subscribe().disposed(by: disposeBag) | |||
action.errors.subscribe().disposed(by: disposeBag) | |||
action.enabled.subscribe().disposed(by: disposeBag) | |||
action.executing.subscribe().disposed(by: disposeBag) | |||
action.isExecuting.subscribe().disposed(by: disposeBag) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wrong indentation
Improve naming of public API properties
This PR is a first phase of public API cleanup as discussed on #120, it includes the following;
enabled
~>isEnabled
executing
~>isExecuting
workFactory
and_enabledIf