Skip to content

Commit c2e89a7

Browse files
authored
Expose generators and laws as public artifacts (#389)
* Extract optics laws to its own module * Make core laws public * Make effects laws public * Remove unnecessary @testable annotation * Update Package manifest * Add podspecs for each new pod that is exposed * Add new modules to Getting Started * Add descriptions of new modules * Update README with new published modules * Fix target membership
1 parent 66651ed commit c2e89a7

File tree

78 files changed

+811
-188
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+811
-188
lines changed

Bow-OpticsLaws-Info.plist

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<plist version="1.0">
3+
<dict>
4+
<key>CFBundleDevelopmentRegion</key>
5+
<string>en</string>
6+
<key>CFBundleExecutable</key>
7+
<string>$(EXECUTABLE_NAME)</string>
8+
<key>CFBundleIdentifier</key>
9+
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
10+
<key>CFBundleInfoDictionaryVersion</key>
11+
<string>6.0</string>
12+
<key>CFBundleName</key>
13+
<string>$(PRODUCT_NAME)</string>
14+
<key>CFBundlePackageType</key>
15+
<string>BNDL</string>
16+
<key>CFBundleShortVersionString</key>
17+
<string>1.0</string>
18+
<key>CFBundleSignature</key>
19+
<string>????</string>
20+
<key>CFBundleVersion</key>
21+
<string>$(CURRENT_PROJECT_VERSION)</string>
22+
<key>NSPrincipalClass</key>
23+
<string></string>
24+
</dict>
25+
</plist>

Bow.xcodeproj/project.pbxproj

+200-54
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Scheme
3+
LastUpgradeVersion = "1020"
4+
version = "1.3">
5+
<BuildAction
6+
parallelizeBuildables = "YES"
7+
buildImplicitDependencies = "YES">
8+
<BuildActionEntries>
9+
<BuildActionEntry
10+
buildForTesting = "YES"
11+
buildForRunning = "YES"
12+
buildForProfiling = "YES"
13+
buildForArchiving = "YES"
14+
buildForAnalyzing = "YES">
15+
<BuildableReference
16+
BuildableIdentifier = "primary"
17+
BlueprintIdentifier = "1160D0BD22D38CEC0010323A"
18+
BuildableName = "BowOpticsLaws.framework"
19+
BlueprintName = "Bow-OpticsLaws"
20+
ReferencedContainer = "container:Bow.xcodeproj">
21+
</BuildableReference>
22+
</BuildActionEntry>
23+
</BuildActionEntries>
24+
</BuildAction>
25+
<TestAction
26+
buildConfiguration = "Debug"
27+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
28+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29+
shouldUseLaunchSchemeArgsEnv = "YES">
30+
<Testables>
31+
</Testables>
32+
<AdditionalOptions>
33+
</AdditionalOptions>
34+
</TestAction>
35+
<LaunchAction
36+
buildConfiguration = "Debug"
37+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
38+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
39+
launchStyle = "0"
40+
useCustomWorkingDirectory = "NO"
41+
ignoresPersistentStateOnLaunch = "NO"
42+
debugDocumentVersioning = "YES"
43+
debugServiceExtension = "internal"
44+
allowLocationSimulation = "YES">
45+
<MacroExpansion>
46+
<BuildableReference
47+
BuildableIdentifier = "primary"
48+
BlueprintIdentifier = "1160D0BD22D38CEC0010323A"
49+
BuildableName = "BowOpticsLaws.framework"
50+
BlueprintName = "Bow-OpticsLaws"
51+
ReferencedContainer = "container:Bow.xcodeproj">
52+
</BuildableReference>
53+
</MacroExpansion>
54+
<AdditionalOptions>
55+
</AdditionalOptions>
56+
</LaunchAction>
57+
<ProfileAction
58+
buildConfiguration = "Release"
59+
shouldUseLaunchSchemeArgsEnv = "YES"
60+
savedToolIdentifier = ""
61+
useCustomWorkingDirectory = "NO"
62+
debugDocumentVersioning = "YES">
63+
<MacroExpansion>
64+
<BuildableReference
65+
BuildableIdentifier = "primary"
66+
BlueprintIdentifier = "1160D0BD22D38CEC0010323A"
67+
BuildableName = "BowOpticsLaws.framework"
68+
BlueprintName = "Bow-OpticsLaws"
69+
ReferencedContainer = "container:Bow.xcodeproj">
70+
</BuildableReference>
71+
</MacroExpansion>
72+
</ProfileAction>
73+
<AnalyzeAction
74+
buildConfiguration = "Debug">
75+
</AnalyzeAction>
76+
<ArchiveAction
77+
buildConfiguration = "Release"
78+
revealArchiveInOrganizer = "YES">
79+
</ArchiveAction>
80+
</Scheme>

BowBrightFuturesGenerators.podspec

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
Pod::Spec.new do |s|
2+
s.name = "BowBrightFuturesGenerators"
3+
s.version = "0.4.0"
4+
s.summary = "PBT Generators for data types in BowBrightFutures."
5+
s.homepage = "https://github.com/bow-swift/bow"
6+
s.license = { :type => 'Apache License, Version 2.0', :text => <<-LICENSE
7+
Licensed under the Apache License, Version 2.0 (the "License");
8+
you may not use this file except in compliance with the License.
9+
You may obtain a copy of the License at
10+
http://www.apache.org/licenses/LICENSE-2.0
11+
Unless required by applicable law or agreed to in writing, software
12+
distributed under the License is distributed on an "AS IS" BASIS,
13+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
See the License for the specific language governing permissions and
15+
limitations under the License.
16+
LICENSE
17+
}
18+
s.authors = "The Bow authors"
19+
20+
s.requires_arc = true
21+
s.osx.deployment_target = "10.10"
22+
s.ios.deployment_target = "8.0"
23+
s.tvos.deployment_target = "9.1"
24+
s.watchos.deployment_target = "2.0"
25+
s.source = { :git => "https://github.com/bow-swift/bow.git", :tag => "#{s.version}" }
26+
s.source_files = "Tests/BowBrightFuturesGenerators/**/*.swift"
27+
s.dependency "Bow", "~> #{s.version}"
28+
s.dependency "BowGenerators", "~> #{s.version}"
29+
s.dependency "BowBrightFutures", "~> #{s.version}"
30+
s.dependency "SwiftCheck", "~> 0.12.0"
31+
end

BowEffectsGenerators.podspec

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
Pod::Spec.new do |s|
2+
s.name = "BowEffectsGenerators"
3+
s.version = "0.4.0"
4+
s.summary = "PBT Generators for data types in BowEffects."
5+
s.homepage = "https://github.com/bow-swift/bow"
6+
s.license = { :type => 'Apache License, Version 2.0', :text => <<-LICENSE
7+
Licensed under the Apache License, Version 2.0 (the "License");
8+
you may not use this file except in compliance with the License.
9+
You may obtain a copy of the License at
10+
http://www.apache.org/licenses/LICENSE-2.0
11+
Unless required by applicable law or agreed to in writing, software
12+
distributed under the License is distributed on an "AS IS" BASIS,
13+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
See the License for the specific language governing permissions and
15+
limitations under the License.
16+
LICENSE
17+
}
18+
s.authors = "The Bow authors"
19+
20+
s.requires_arc = true
21+
s.osx.deployment_target = "10.10"
22+
s.ios.deployment_target = "8.0"
23+
s.tvos.deployment_target = "9.1"
24+
s.watchos.deployment_target = "2.0"
25+
s.source = { :git => "https://github.com/bow-swift/bow.git", :tag => "#{s.version}" }
26+
s.source_files = "Tests/BowEffectsGenerators/**/*.swift"
27+
s.dependency "Bow", "~> #{s.version}"
28+
s.dependency "BowGenerators", "~> #{s.version}"
29+
s.dependency "BowEffects", "~> #{s.version}"
30+
s.dependency "SwiftCheck", "~> 0.12.0"
31+
end

BowEffectsLaws.podspec

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
Pod::Spec.new do |s|
2+
s.name = "BowEffectsLaws"
3+
s.version = "0.4.0"
4+
s.summary = "Laws for type classes included in BowEffects."
5+
s.homepage = "https://github.com/bow-swift/bow"
6+
s.license = { :type => 'Apache License, Version 2.0', :text => <<-LICENSE
7+
Licensed under the Apache License, Version 2.0 (the "License");
8+
you may not use this file except in compliance with the License.
9+
You may obtain a copy of the License at
10+
http://www.apache.org/licenses/LICENSE-2.0
11+
Unless required by applicable law or agreed to in writing, software
12+
distributed under the License is distributed on an "AS IS" BASIS,
13+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
See the License for the specific language governing permissions and
15+
limitations under the License.
16+
LICENSE
17+
}
18+
s.authors = "The Bow authors"
19+
20+
s.requires_arc = true
21+
s.osx.deployment_target = "10.10"
22+
s.ios.deployment_target = "8.0"
23+
s.tvos.deployment_target = "9.1"
24+
s.watchos.deployment_target = "2.0"
25+
s.source = { :git => "https://github.com/bow-swift/bow.git", :tag => "#{s.version}" }
26+
s.source_files = "Tests/BowEffectsLaws/**/*.swift"
27+
s.dependency "Bow", "~> #{s.version}"
28+
s.dependency "BowEffects", "~> #{s.version}"
29+
s.dependency "SwiftCheck", "~> 0.12.0"
30+
s.dependency "Nimble", "~> 8.0.1"
31+
end

BowFreeGenerators.podspec

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
Pod::Spec.new do |s|
2+
s.name = "BowFreeGenerators"
3+
s.version = "0.4.0"
4+
s.summary = "PBT Generators for data types in BowFree."
5+
s.homepage = "https://github.com/bow-swift/bow"
6+
s.license = { :type => 'Apache License, Version 2.0', :text => <<-LICENSE
7+
Licensed under the Apache License, Version 2.0 (the "License");
8+
you may not use this file except in compliance with the License.
9+
You may obtain a copy of the License at
10+
http://www.apache.org/licenses/LICENSE-2.0
11+
Unless required by applicable law or agreed to in writing, software
12+
distributed under the License is distributed on an "AS IS" BASIS,
13+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
See the License for the specific language governing permissions and
15+
limitations under the License.
16+
LICENSE
17+
}
18+
s.authors = "The Bow authors"
19+
20+
s.requires_arc = true
21+
s.osx.deployment_target = "10.10"
22+
s.ios.deployment_target = "8.0"
23+
s.tvos.deployment_target = "9.1"
24+
s.watchos.deployment_target = "2.0"
25+
s.source = { :git => "https://github.com/bow-swift/bow.git", :tag => "#{s.version}" }
26+
s.source_files = "Tests/BowFreeGenerators/**/*.swift"
27+
s.dependency "Bow", "~> #{s.version}"
28+
s.dependency "BowGenerators", "~> #{s.version}"
29+
s.dependency "BowFree", "~> #{s.version}"
30+
s.dependency "SwiftCheck", "~> 0.12.0"
31+
end

BowGenerators.podspec

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
Pod::Spec.new do |s|
2+
s.name = "BowGenerators"
3+
s.version = "0.4.0"
4+
s.summary = "PBT Generators for data types in Bow."
5+
s.homepage = "https://github.com/bow-swift/bow"
6+
s.license = { :type => 'Apache License, Version 2.0', :text => <<-LICENSE
7+
Licensed under the Apache License, Version 2.0 (the "License");
8+
you may not use this file except in compliance with the License.
9+
You may obtain a copy of the License at
10+
http://www.apache.org/licenses/LICENSE-2.0
11+
Unless required by applicable law or agreed to in writing, software
12+
distributed under the License is distributed on an "AS IS" BASIS,
13+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
See the License for the specific language governing permissions and
15+
limitations under the License.
16+
LICENSE
17+
}
18+
s.authors = "The Bow authors"
19+
20+
s.requires_arc = true
21+
s.osx.deployment_target = "10.10"
22+
s.ios.deployment_target = "8.0"
23+
s.tvos.deployment_target = "9.1"
24+
s.watchos.deployment_target = "2.0"
25+
s.source = { :git => "https://github.com/bow-swift/bow.git", :tag => "#{s.version}" }
26+
s.source_files = "Tests/BowGenerators/**/*.swift"
27+
s.dependency "Bow", "~> #{s.version}"
28+
s.dependency "SwiftCheck", "~> 0.12.0"
29+
end

BowLaws.podspec

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
Pod::Spec.new do |s|
2+
s.name = "BowLaws"
3+
s.version = "0.4.0"
4+
s.summary = "Laws for type classes included in Bow."
5+
s.homepage = "https://github.com/bow-swift/bow"
6+
s.license = { :type => 'Apache License, Version 2.0', :text => <<-LICENSE
7+
Licensed under the Apache License, Version 2.0 (the "License");
8+
you may not use this file except in compliance with the License.
9+
You may obtain a copy of the License at
10+
http://www.apache.org/licenses/LICENSE-2.0
11+
Unless required by applicable law or agreed to in writing, software
12+
distributed under the License is distributed on an "AS IS" BASIS,
13+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
See the License for the specific language governing permissions and
15+
limitations under the License.
16+
LICENSE
17+
}
18+
s.authors = "The Bow authors"
19+
20+
s.requires_arc = true
21+
s.osx.deployment_target = "10.10"
22+
s.ios.deployment_target = "8.0"
23+
s.tvos.deployment_target = "9.1"
24+
s.watchos.deployment_target = "2.0"
25+
s.source = { :git => "https://github.com/bow-swift/bow.git", :tag => "#{s.version}" }
26+
s.source_files = "Tests/BowLaws/**/*.swift"
27+
s.dependency "Bow", "~> #{s.version}"
28+
s.dependency "BowGenerators", "~> #{s.version}"
29+
s.dependency "SwiftCheck", "~> 0.12.0"
30+
s.dependency "Nimble", "~> 8.0.1"
31+
end

BowOpticsLaws.podspec

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
Pod::Spec.new do |s|
2+
s.name = "BowOpticsLaws"
3+
s.version = "0.4.0"
4+
s.summary = "Laws for type classes included in BowOptics."
5+
s.homepage = "https://github.com/bow-swift/bow"
6+
s.license = { :type => 'Apache License, Version 2.0', :text => <<-LICENSE
7+
Licensed under the Apache License, Version 2.0 (the "License");
8+
you may not use this file except in compliance with the License.
9+
You may obtain a copy of the License at
10+
http://www.apache.org/licenses/LICENSE-2.0
11+
Unless required by applicable law or agreed to in writing, software
12+
distributed under the License is distributed on an "AS IS" BASIS,
13+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
See the License for the specific language governing permissions and
15+
limitations under the License.
16+
LICENSE
17+
}
18+
s.authors = "The Bow authors"
19+
20+
s.requires_arc = true
21+
s.osx.deployment_target = "10.10"
22+
s.ios.deployment_target = "8.0"
23+
s.tvos.deployment_target = "9.1"
24+
s.watchos.deployment_target = "2.0"
25+
s.source = { :git => "https://github.com/bow-swift/bow.git", :tag => "#{s.version}" }
26+
s.source_files = "Tests/BowOpticsLaws/**/*.swift"
27+
s.dependency "Bow", "~> #{s.version}"
28+
s.dependency "BowOptics", "~> #{s.version}"
29+
s.dependency "SwiftCheck", "~> 0.12.0"
30+
s.dependency "Nimble", "~> 8.0.1"
31+
end

BowRxGenerators.podspec

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
Pod::Spec.new do |s|
2+
s.name = "BowRxGenerators"
3+
s.version = "0.4.0"
4+
s.summary = "PBT Generators for data types in BowRx."
5+
s.homepage = "https://github.com/bow-swift/bow"
6+
s.license = { :type => 'Apache License, Version 2.0', :text => <<-LICENSE
7+
Licensed under the Apache License, Version 2.0 (the "License");
8+
you may not use this file except in compliance with the License.
9+
You may obtain a copy of the License at
10+
http://www.apache.org/licenses/LICENSE-2.0
11+
Unless required by applicable law or agreed to in writing, software
12+
distributed under the License is distributed on an "AS IS" BASIS,
13+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
See the License for the specific language governing permissions and
15+
limitations under the License.
16+
LICENSE
17+
}
18+
s.authors = "The Bow authors"
19+
20+
s.requires_arc = true
21+
s.osx.deployment_target = "10.10"
22+
s.ios.deployment_target = "8.0"
23+
s.tvos.deployment_target = "9.1"
24+
s.watchos.deployment_target = "2.0"
25+
s.source = { :git => "https://github.com/bow-swift/bow.git", :tag => "#{s.version}" }
26+
s.source_files = "Tests/BowRxGenerators/**/*.swift"
27+
s.dependency "Bow", "~> #{s.version}"
28+
s.dependency "BowGenerators", "~> #{s.version}"
29+
s.dependency "BowRx", "~> #{s.version}"
30+
s.dependency "SwiftCheck", "~> 0.12.0"
31+
end

0 commit comments

Comments
 (0)