Skip to content

Commit

Permalink
Merge pull request #41 from dennisweissmann/misc
Browse files Browse the repository at this point in the history
bumps version to 0.3.4
use 2-space indentation
adds documentation
  • Loading branch information
dennisweissmann authored Aug 26, 2016
2 parents 10723fc + d411726 commit ae187f6
Show file tree
Hide file tree
Showing 5 changed files with 475 additions and 440 deletions.
28 changes: 9 additions & 19 deletions .swiftlint.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,11 @@
excluded: # paths to ignore during linting. overridden by `included`.
opt_in_rules:
- empty_count
- missing_docs
- force_unwrapping

disabled_rules:
- line_length
- force_try
- type_name
- cyclomatic_complexity
- todo
- file_length
disabled_rules:
- file_length

type_body_length:
- 300 # warning
- 400 # error

variable_name_max_length:
- 40 # warning
- 60 # error

variable_name_min_length:
- 3 # warning
- 1 # error
line_length:
- 160
- 160
2 changes: 1 addition & 1 deletion DeviceKit.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'DeviceKit'
s.version = '0.3.3'
s.version = '0.3.4'
s.summary = 'DeviceKit is a µ-framework that provides a value-type replacement of UIDevice.'

s.description = <<-DESC
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@

- iOS 8.0+ / tvOS 9.0+ (linking against iOS 9.3 and tvOS 9.2 required)
- Xcode 7.3+
- A Swift 3 version can the found in the swift-3 branch (should run with the latest beta, if not please open an issue)

## Installation
DeviceKit can be installed in various ways.
Expand All @@ -30,13 +31,13 @@ source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
use_frameworks!

pod 'DeviceKit', '~> 0.3.3'
pod 'DeviceKit', '~> 0.3.4'
```

### Carthage

```ogdl
github "dennisweissmann/DeviceKit" ~> 0.3.3
github "dennisweissmann/DeviceKit" ~> 0.3.4
```

### Manually
Expand Down
Loading

0 comments on commit ae187f6

Please sign in to comment.