26 lines
879 B
Ruby
26 lines
879 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "StateMachine"
|
|
s.version = "0.1"
|
|
s.summary = "State machine library for Objective-C."
|
|
s.homepage = "https://github.com/luisobo/StateMachine"
|
|
s.license = { :type => 'MIT', :file => 'LICENSE' }
|
|
|
|
s.author = { "Luis Solano Bonet" => "contact@luissolano.com" }
|
|
# Specify the location from where the source should be retreived.
|
|
#
|
|
s.source = { :git => "https://github.com/luisobo/StateMachine.git", :tag => "0.1" }
|
|
|
|
s.ios.deployment_target = '5.0'
|
|
s.osx.deployment_target = '10.7'
|
|
|
|
s.source_files = 'StateMachine/**/*.{h,m}'
|
|
|
|
s.public_header_files = ['StateMachine/StateMachine.h',
|
|
'StateMachine/LSStateMachine.h',
|
|
'StateMachine/LSStateMachineMacros.h',
|
|
'StateMachine/LSStateMachineTypedefs.h',
|
|
'StateMachine/LSStateMachineDynamicAdditions.h']
|
|
|
|
s.requires_arc = true
|
|
end
|