lib/spaceship/tunes/build.rb in spaceship-0.7.0 vs lib/spaceship/tunes/build.rb in spaceship-0.9.0
- old
+ new
@@ -1,10 +1,9 @@
module Spaceship
module Tunes
# Represents a build which is inside the build train
class Build < TunesBase
-
#####################################################
# @!group General metadata
#####################################################
# @return (Spaceship::Tunes::BuildTrain) A reference to the build train this build is contained in
@@ -20,10 +19,13 @@
attr_accessor :build_version
# @return (String) The version number (e.g. 1.3)
attr_accessor :train_version
+ # @return (Boolean) Is this build currently processing?
+ attr_accessor :processing
+
# @return (Integer) The number of ticks since 1970 (e.g. 1413966436000)
attr_accessor :upload_date
# @return (String) URL to the app icon of this build (150x150px)
attr_accessor :icon_url
@@ -78,9 +80,10 @@
'trainVersion' => :train_version,
'appName' => :app_name,
'platform' => :platform,
'id' => :id,
'valid' => :valid,
+ 'processing' => :processing,
'installCount' => :install_count,
'internalInstallCount' => :internal_install_count,
'externalInstallCount' => :external_install_count,
'sessionCount' => :session_count,