ActiveJob -> Active Job [ci skip]

See http://guides.rubyonrails.org/api_documentation_guidelines.html#wording
This commit is contained in:
Xavier Noria 2014-08-21 23:27:40 +02:00
parent b6ccaee952
commit a57f7b5797
3 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
module ActiveJob
# Returns the version of the currently loaded ActiveJob as a <tt>Gem::Version</tt>
# Returns the version of the currently loaded Active Job as a <tt>Gem::Version</tt>
def self.gem_version
Gem::Version.new VERSION::STRING
end

View File

@ -1,7 +1,7 @@
require_relative 'gem_version'
module ActiveJob
# Returns the version of the currently loaded ActiveJob as a <tt>Gem::Version</tt>
# Returns the version of the currently loaded Active Job as a <tt>Gem::Version</tt>
def self.version
gem_version
end

View File

@ -203,7 +203,7 @@ is integrated with Action Mailer so you can easily send emails asynchronously:
# If you want to send the email now use #deliver_now
UserMailer.welcome(@user).deliver_now
# If you want to send the email through ActiveJob use #deliver_later
# If you want to send the email through Active Job use #deliver_later
UserMailer.welcome(@user).deliver_later
```