Skip to content

Commit

Permalink
restructure folders and files, add Core and Realm podspecs.
Browse files Browse the repository at this point in the history
  • Loading branch information
DenTelezhkin committed Jan 5, 2016
1 parent aad025e commit e5f860f
Show file tree
Hide file tree
Showing 18 changed files with 54 additions and 44 deletions.
3 changes: 1 addition & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
# Change Log
All notable changes to this project will be documented in this file.


## Master
## [2.4.0](https://github.com/DenHeadless/DTModelStorage/releases/tag/2.4.0)

### Added

Expand Down
15 changes: 13 additions & 2 deletions DTModelStorage.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'DTModelStorage'
s.version = '2.3.0'
s.version = '2.4.0'
s.license = 'MIT'
s.summary = 'Storage classes for datasource based controls.'
s.homepage = 'https://github.com/DenHeadless/DTModelStorage'
Expand All @@ -10,5 +10,16 @@ Pod::Spec.new do |s|
s.ios.deployment_target = '8.0'
s.tvos.deployment_target = '9.0'
s.frameworks = 'UIKit', 'Foundation', 'CoreData'
s.source_files = 'DTModelStorage/**/*.{h,swift}'

s.subspec 'Core' do |core|
core.source_files = 'DTModelStorage/Sources/Core/*.swift'
end

s.subspec 'Realm' do |realm|
realm.dependency 'DTModelStorage/Core'
realm.dependency 'RealmSwift', '~> 0.97'
realm.source_files = 'DTModelStorage/Sources/Realm/*.swift'
end

s.default_subspec = 'Core'
end
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
80 changes: 40 additions & 40 deletions DTModelStorageTests/DTModelStorage.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

0 comments on commit e5f860f

Please sign in to comment.