diff --git a/.swift-version b/.swift-version new file mode 100644 index 00000000..9f55b2cc --- /dev/null +++ b/.swift-version @@ -0,0 +1 @@ +3.0 diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..41f69940 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,4 @@ +osx_image: xcode8 +language: objective-c +xcode_project: SWCompression.xcodeproj +xcode_scheme: SWCompression diff --git a/SWCompression.podspec b/SWCompression.podspec new file mode 100644 index 00000000..4664e770 --- /dev/null +++ b/SWCompression.podspec @@ -0,0 +1,24 @@ +Pod::Spec.new do |s| + + s.name = "SWCompression" + s.version = "1.0.0" + s.summary = "Framework with implementations in Swift of different (de)compression algorithms" + + s.description = <<-DESC + A framework which contains native (written in Swift) implementations of compression algorithms. + Swift developers currently have access only to various wrappers written in Objective-C + around system libraries if they want to decompress something. SWCompression allows to do this with pure Swift + without relying on availability of system libraries. + DESC + + s.homepage = "https://github.com/tsolomko/SWCompression" + + s.license = { :type => "MIT", :file => "LICENSE" } + + s.author = { "Timofey Solomko" => "tsolomko@gmail.com" } + + s.source = { :git => "https://github.com/tsolomko/SWCompression.git", :tag => "v#{s.version}" } + + s.source_files = "Sources" + +end