Skip to content
This repository has been archived by the owner on Nov 16, 2022. It is now read-only.

Commit

Permalink
Rebranding
Browse files Browse the repository at this point in the history
  • Loading branch information
CozmoNate committed May 2, 2020
1 parent f418051 commit c627086
Show file tree
Hide file tree
Showing 57 changed files with 224 additions and 283 deletions.
8 changes: 4 additions & 4 deletions .slather.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
coverage_service: coveralls
workspace: Condulet.xcworkspace
xcodeproj: Condulet.xcodeproj
scheme: Condulet
workspace: Forest.xcworkspace
xcodeproj: Forest.xcodeproj
scheme: Forest
ignore:
- Pods/*
- ConduletTests/*
- ForestTests/*
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ cache:

env:
global:
- WORKSPACE=Condulet.xcworkspace
- WORKSPACE=Forest.xcworkspace
- COVERALLS_SERVICE_NAME=travis-ci
- COVERALLS_SERVICE_JOB_ID=$TRAVIS_JOB_ID
matrix:
- DESTINATION="OS=12.2,name=iPhone 8" SCHEME="Condulet" SDK="iphonesimulator12.2"
- DESTINATION="OS=12.2,name=iPhone 8" SCHEME="Forest" SDK="iphonesimulator12.2"

install:
- bundle install --without=documentation
Expand Down
35 changes: 0 additions & 35 deletions Condulet.podspec

This file was deleted.

38 changes: 0 additions & 38 deletions Condulet.xcworkspace/xcshareddata/IDETemplateMacros.plist

This file was deleted.

19 changes: 0 additions & 19 deletions Condulet/Condulet.h

This file was deleted.

35 changes: 35 additions & 0 deletions Forest.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
Pod::Spec.new do |s|
s.name = 'Forest'
s.version = '1.26.6'
s.summary = 'Forest client makes it simple to send requests to web services'
s.description = <<-DESC
Forest client is a flexible and extensible RESTful API client framework built on top of `URLSession` and `URLSessionTask`. It includes network object mappers from JSON for the most commonly used data types. Because of its simple data encoding/decoding approach and extensible architecture you can easily add your custom network object mappers. Forest provides most of the features needed to build robust client for your backend services.
DESC
s.homepage = 'https://github.com/kzlekk/Forest'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Natan Zalkin' => 'natan.zalkin@me.com' }
s.source = { :git => 'https://github.com/kzlekk/Forest.git', :tag => "#{s.version}" }
s.module_name = 'Forest'
s.swift_version = '5.0'

s.ios.deployment_target = '10.3'
s.osx.deployment_target = '10.13'

s.subspec 'Core' do |cs|
cs.source_files = 'Forest/Core/*.swift'
cs.ios.frameworks = 'MobileCoreServices'
end

s.subspec 'Protobuf' do |cs|
cs.dependency 'Forest/Core'
cs.dependency 'SwiftProtobuf'
cs.source_files = 'Forest/Protobuf/*.swift'
end

s.subspec 'Reachability' do |cs|
cs.source_files = 'Forest/Reachability/*.swift'
end

s.default_subspec = 'Core'

end
Loading

0 comments on commit c627086

Please sign in to comment.