Skip to content

Commit

Permalink
fixed ready_to_publish method
Browse files Browse the repository at this point in the history
  • Loading branch information
ij committed Aug 19, 2014
1 parent b54c7d4 commit 831a2a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/sf/session.rb
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def ready_to_publish?
required_attrs = %w(title__c abstract__c timestamp__c start_time__c date__c end_time__c)
ready = true
required_attrs.each do |attr|
if attr.blank?
if self.send(attr).blank?
ready = false
break
end
Expand Down
2 changes: 1 addition & 1 deletion lib/sf/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Sf
VERSION = "0.1.4"
VERSION = "0.1.5"
end

0 comments on commit 831a2a8

Please sign in to comment.