Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Joachim Bondo committed Dec 29, 2015
0 parents commit c1275a9
Show file tree
Hide file tree
Showing 10 changed files with 1,024 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.DS_Store
build
xcuserdata
*.mode*
*.pbxuser
*.xcuserdatad
*.xccheckout
16 changes: 16 additions & 0 deletions Changeset.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
Pod::Spec.new do |spec|
spec.name = 'Changeset'
spec.version = '1.0'
spec.license = { :type => 'BSD', :file => 'LICENSE' }
spec.homepage = 'https://github.com/osteslag/Changeset'
spec.author = { 'Joachim Bondo' => '[email protected]' }
spec.social_media_url = 'https://twitter.com/osteslag'
spec.summary = 'Minimal edits from one collection to another'
spec.description = 'A Swift value type to compute and hold the edits required to go from one CollectionType of Equatable elements to another.'
spec.source = { :git => 'https://github.com/osteslag/Changeset.git', :tag => "v#{spec.version}" }
spec.source_files = 'Changeset/*.swift'
spec.requires_arc = true
spec.ios.deployment_target = '8.0'
spec.osx.deployment_target = '10.9'
spec.watchos.deployment_target = '2.0'
end
Loading

0 comments on commit c1275a9

Please sign in to comment.