Sha256: 2d4e19c69e4a440d1dfb58592274a2927bc05d8207c2429581b708dc9763a8e5
Contents?: true
Size: 1.3 KB
Versions: 1
Compression:
Stored size: 1.3 KB
Contents
require 'calabash-cucumber/utils/logging' require 'run_loop/version' module Calabash module Cucumber # @!visibility public # The Calabash iOS gem version. VERSION = '0.10.1' # @!visibility public # The minimum required version of the calabash.framework or, for Xamarin # users, the Calabash component. MIN_SERVER_VERSION = '0.10.1' # @!visibility private def self.const_missing(const_name) if const_name == :FRAMEWORK_VERSION _deprecated('0.9.169', 'FRAMEWORK_VERSION has been deprecated - there is no replacement', :warn) return nil end raise(NameError, "uninitialized constant Calabash::Cucumber::#{const_name}") end # A model of a release version that can be used to compare two version. # # Calabash tries very hard to comply with Semantic Versioning rules. However, # the semantic versioning spec is incompatible with RubyGem's patterns for # pre-release gems. # # > "But returning to the practical: No release version of SemVer is compatible with Rubygems." - _David Kellum_ # # Calabash version numbers will be in the form `<major>.<minor>.<patch>[.pre<N>]`. # # @see http://semver.org/ # @see http://gravitext.com/2012/07/22/versioning.html class Version < RunLoop::Version end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
calabash-cucumber-0.10.1 | lib/calabash-cucumber/version.rb |