forked from ReSwift/ReSwift-Recorder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathReSwiftRecorder.podspec
18 lines (18 loc) · 909 Bytes
/
ReSwiftRecorder.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "ReSwiftRecorder"
s.version = "0.4.0"
s.summary = "Time Travel and Hot Reloading for ReSwift"
s.description = <<-DESC
A recording store for ReSwift. Enables hot-reloading and time travel for ReSwift apps.
Still in experimental stage!
DESC
s.homepage = "https://github.com/ReSwift/ReSwift-Recorder"
s.license = { :type => "MIT", :file => "LICENSE.md" }
s.author = { "Benjamin Encz" => "[email protected]" }
s.social_media_url = "http://twitter.com/benjaminencz"
s.source = { :git => "https://github.com/ReSwift/ReSwift-Recorder.git", :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.requires_arc = true
s.source_files = 'ReSwiftRecorder/**/*.swift'
s.dependency 'ReSwift', '~> 3.0'
end