Skip to content

Commit

Permalink
Merge pull request #31 from nghialv/refactoring
Browse files Browse the repository at this point in the history
Bump version
  • Loading branch information
nghialv committed Mar 16, 2016
2 parents 7cb32b5 + db5242d commit b643059
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Hakuba.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Hakuba"
s.version = "2.0.0"
s.version = "2.0.1"
s.summary = "A new way to manage UITableView"
s.homepage = "https://github.com/nghialv/Hakuba"
s.license = { :type => "MIT", :file => "LICENSE" }
Expand All @@ -9,7 +9,7 @@ Pod::Spec.new do |s|

s.platform = :ios
s.ios.deployment_target = "8.0"
s.source = { :git => "https://github.com/nghialv/Hakuba.git", :tag => "2.0.0" }
s.source = { :git => "https://github.com/nghialv/Hakuba.git", :tag => "2.0.1" }
s.source_files = "Hakuba/*"
s.requires_arc = true
end
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,15 +114,14 @@ Usage
.bump()

// handing section index by enum
enum YourSection: Int, SectionIndex {
enum YourSection: Int, SectionIndexType {
case Top = 0
case Center
case Bottom

var intValue: Int {
return self.rawValue
}
static let count = 3
}

let topSection = hakuba[YourSection.Top]
```

Expand Down

0 comments on commit b643059

Please sign in to comment.