pantograph/lib/pantograph/actions/lane_context.rb in pantograph-0.1.14 vs pantograph/lib/pantograph/actions/lane_context.rb in pantograph-0.1.15

- old
+ new

@@ -8,18 +8,18 @@ ##################################################### # @!group Documentation ##################################################### def self.description - "Access lane context values" + 'Access lane context values' end def self.details [ - "Access the pantograph lane context values.", - "More information about how the lane context works: [https://johnknapprs.github.io/pantograph/advanced/#lane-context](https://johnknapprs.github.io/pantograph/advanced/#lane-context)." - ].join("\n") + 'More information about how the lane context works:', + '[https://johnknapprs.github.io/pantograph/advanced/#lane-context](https://johnknapprs.github.io/pantograph/advanced/#lane-context)' + ].join(' ') end def self.available_options [] end @@ -31,11 +31,11 @@ def self.return_type :hash end def self.authors - ["KrauseFx"] + ['KrauseFx'] end def self.is_supported?(platform) true end @@ -45,10 +45,10 @@ nil end def self.example_code [ - 'lane_context[SharedValues::BUILD_NUMBER]', + 'lane_context[:BUILD_NUMBER]', 'lane_context[SharedValues::IPA_OUTPUT_PATH]' ] end def self.category