Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Configurable headers+QoL #4

Open
wants to merge 26 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 9 additions & 16 deletions DDMockiOS.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,38 +2,31 @@
# Be sure to run `pod lib lint DDMockiOS.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#

Pod::Spec.new do |spec|
spec.name = 'DDMockiOS'
spec.version = '0.1.5'
spec.version = '2.0'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

0.1 to 2.0 is a pretty big jump

spec.summary = 'Deloitte Digital simple network mocking library for iOS'

# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!

# spec.description = <<-DESC
# Deloitte Digital simple network mocking library for iOS
# DESC
spec.description = 'Deloitte Digital simple network mocking library for iOS. Runtime configurable mocking library with highly flexible usage. Integrated tooling for delivery and testing teams.'

spec.homepage = 'https://github.com/DeloitteDigitalAPAC/ddmock-ios'
# spec.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
spec.license = { :type => 'MIT', :file => 'LICENSE' }
spec.author = 'Deloitte Digital Asia Pacific'
spec.source = { :git => "https://github.com/DeloitteDigitalAPAC/ddmock-ios.git", :tag => 'v' + spec.version.to_s }
spec.source = { :git => "https://github.com/will-rigney/ddmock-ios.git", :tag => 'v' + spec.version.to_s }
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This needs to be set back to the right url


spec.ios.deployment_target = '11.0'

spec.source_files = 'DDMockiOS'
spec.source_files = 'Sources'

spec.preserve_paths = [
'init-mocks.py',
]
'Generate/ddmock.py',
'Resources/general.json',
'Resources/root.json',
'Resources/endpoint.json',
]

spec.swift_version = '5'
spec.static_framework = true
Expand Down
166 changes: 139 additions & 27 deletions DDMockiOS.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

152 changes: 0 additions & 152 deletions DDMockiOS/DDMock.swift

This file was deleted.

67 changes: 0 additions & 67 deletions DDMockiOS/DDMockProtocol.swift

This file was deleted.

45 changes: 0 additions & 45 deletions DDMockiOS/DDMockSettingsBundleHelper.swift

This file was deleted.

34 changes: 0 additions & 34 deletions DDMockiOS/MockEntry.swift

This file was deleted.

Loading