Skip to content
This repository was archived by the owner on Jan 24, 2019. It is now read-only.

Commit affff42

Browse files
committed
change readme and podspec
1 parent f6f0650 commit affff42

2 files changed

Lines changed: 18 additions & 16 deletions

File tree

OrangeFramework.podspec

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,16 @@
66
Pod::Spec.new do |s|
77
s.name = "OrangeFramework"
88
s.version = "0.1.0"
9-
s.summary = "OrangeFramework is a collection of tools for iOS development aimed at fast and high quality coding on Swift and Objective C."
10-
11-
# This description is used to generate tags and improve search results.
12-
# * Think: What does it do? Why did you write it? What is the focus?
13-
# * Try to keep it short, snappy and to the point.
14-
# * Write the description between the DESC delimiters below.
15-
# * Finally, don't worry about the indent, CocoaPods strips it!
9+
s.summary = "Powerful framework aimed at fast and high quality developing mobile apps on Objective-C and Swift.
1610
s.description = <<-DESC
11+
OrangeFramework is a collection of components for fast and high quality developing mobile apps on Objective-C and Swift.
12+
It includes a light-weight iOC container (used for dependency injection), flexible logger, powerful extensions and simple system info getter.
1713
DESC
18-
1914
s.homepage = "https://github.com/kuler90/OrangeFramework"
2015
s.license = 'MIT'
2116
s.author = { "Roman Kulesha" => "kulesha.r@gmail.com" }
2217
s.source = { :git => "https://github.com/kuler90/OrangeFramework.git", :tag => s.version.to_s }
23-
s.default_subspecs = 'Dependency', 'Log', 'SystemInfo', 'Extensions', 'Segue'
18+
s.default_subspecs = 'Dependency', 'Log', 'SystemInfo', 'Extensions', 'Segues'
2419
s.platform = :ios, '8.0'
2520
s.requires_arc = true
2621
s.xcconfig = { 'SWIFT_INSTALL_OBJC_HEADER' => 'NO', 'EMBEDDED_CONTENT_CONTAINS_SWIFT' => 'NO' }
@@ -33,16 +28,16 @@ Pod::Spec.new do |s|
3328
ss.source_files = 'OrangeFramework/Log/**/*'
3429
end
3530

36-
s.subspec 'Segue' do |ss|
37-
ss.source_files = 'OrangeFramework/Segue/**/*'
31+
s.subspec 'SystemInfo' do |ss|
32+
ss.source_files = 'OrangeFramework/SystemInfo/**/*'
3833
end
3934

4035
s.subspec 'Extensions' do |ss|
4136
ss.source_files = 'OrangeFramework/Extensions/**/*'
4237
end
4338

44-
s.subspec 'SystemInfo' do |ss|
45-
ss.source_files = 'OrangeFramework/SystemInfo/**/*'
39+
s.subspec 'Segues' do |ss|
40+
ss.source_files = 'OrangeFramework/Segues/**/*'
4641
end
4742

4843
end

README.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,18 @@
11
# OrangeFramework
22

3-
OrangeFramework is a collection of tools for iOS development aimed at fast and high quality coding on Swift and Objective C.
3+
OrangeFramework is a collection of components for fast and high quality developing mobile apps on Objective-C and Swift. It was designed with a focus on simplicity and flexibility. All components are fully independent and can be used separately.
44

5-
## Architecture
5+
OrangeFramework includes:
6+
* Light-weight iOC container (used for dependency injection).
7+
* Flexible logger.
8+
* Powerful extensions.
9+
* Simple system info getter.
610

711
## Requirements
812

13+
* iOS 8.0+
14+
* Xcode 7.0+
15+
916
## Installation
1017

1118
OrangeFramework is available through [CocoaPods](http://cocoapods.org). To install
@@ -21,4 +28,4 @@ Roman Kulesha, kulesha.r@gmail.com
2128

2229
## License
2330

24-
OrangeFramework is available under the MIT license. See the LICENSE file for more info.
31+
OrangeFramework is available under the MIT license. See the LICENSE file for more info.

0 commit comments

Comments
 (0)