Skip to content

Commit

Permalink
Bump version 1.1
Browse files Browse the repository at this point in the history
- Compatibility with Swift 2.2
- Add codebeat badge to README.md
  • Loading branch information
alphatroya committed Mar 24, 2016
1 parent b342783 commit ed28b6a
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion ATRNetworkActivityIndicatorManager.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Pod::Spec.new do |s|

s.name = "ATRNetworkActivityIndicatorManager"
s.version = "1.0"
s.version = "1.1"
s.summary = "Simple UIApplication's NetworkActivityIndicator counter"
s.description = "Simple UIApplication's NetworkActivityIndicator counter (https://github.com/alphatroya/NetworkActivityIndicatorManager)"
s.homepage = "https://github.com/alphatroya/NetworkActivityIndicatorManager"
Expand Down
4 changes: 2 additions & 2 deletions Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
github "Quick/Nimble" "v3.1.0"
github "Quick/Quick" "v0.9.0"
github "Quick/Nimble" "v3.2.0"
github "Quick/Quick" "v0.9.1"
2 changes: 1 addition & 1 deletion Carthage/Checkouts/Nimble
Submodule Nimble updated 125 files
2 changes: 1 addition & 1 deletion Carthage/Checkouts/Quick
Submodule Quick updated 31 files
+3 −3 Documentation/ConfiguringQuick.md
+2 −2 Documentation/InstallingQuick.md
+9 −9 Documentation/QuickExamplesAndGroups.md
+1 −1 Documentation/QuickInObjectiveC.md
+13 −5 Documentation/SettingUpYourXcodeProject.md
+2 −2 Documentation/SharedExamples.md
+2 −2 Documentation/TestingApps.md
+1 −1 Quick.podspec
+16 −0 Quick.xcodeproj/project.pbxproj
+1 −1 README.md
+8 −1 Rakefile
+5 −9 Sources/Quick/DSL/World+DSL.swift
+5 −1 Sources/Quick/NSString+QCKSelectorName.m
+16 −6 Sources/Quick/QuickSpec.m
+3 −3 Sources/QuickFocusedTests/FocusedTests+ObjC.m
+3 −3 Sources/QuickTests/FunctionalTests/AfterEachTests+ObjC.m
+3 −3 Sources/QuickTests/FunctionalTests/AfterSuiteTests+ObjC.m
+2 −2 Sources/QuickTests/FunctionalTests/BeforeEachTests+ObjC.m
+3 −3 Sources/QuickTests/FunctionalTests/BeforeSuiteTests+ObjC.m
+3 −3 Sources/QuickTests/FunctionalTests/FailureTests+ObjC.m
+2 −2 Sources/QuickTests/FunctionalTests/FailureUsingXCTAssertTests+ObjC.m
+12 −4 Sources/QuickTests/FunctionalTests/ItTests+ObjC.m
+50 −12 Sources/QuickTests/FunctionalTests/ItTests.swift
+3 −3 Sources/QuickTests/FunctionalTests/PendingTests+ObjC.m
+3 −3 Sources/QuickTests/FunctionalTests/SharedExamples+BeforeEachTests+ObjC.m
+3 −3 Sources/QuickTests/FunctionalTests/SharedExamplesTests+ObjC.m
+1 −1 Sources/QuickTests/Helpers/QCKSpecRunner.h
+2 −1 Sources/QuickTests/Helpers/QCKSpecRunner.m
+11 −0 Sources/QuickTests/Helpers/QuickSpec+QuickSpec_MethodList.h
+31 −0 Sources/QuickTests/Helpers/QuickSpec+QuickSpec_MethodList.m
+1 −0 Sources/QuickTests/Helpers/QuickTestsBridgingHeader.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ public class NetworkActivityIndicatorManager {
application.networkActivityIndicatorVisible = true
}

self.dynamicType.activitiesCount++
self.dynamicType.activitiesCount += 1
}

public func removeActivity() {
if self.dynamicType.activitiesCount > 0 {
self.dynamicType.activitiesCount--
self.dynamicType.activitiesCount -= 1

if self.dynamicType.activitiesCount == 0 {
application.networkActivityIndicatorVisible = false
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

[![Build Status](https://travis-ci.org/alphatroya/NetworkActivityIndicatorManager.svg?branch=master)](https://travis-ci.org/alphatroya/NetworkActivityIndicatorManager)
[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)
[![codebeat badge](https://codebeat.co/badges/b9f64cba-baea-4ac6-ac9c-eedf093a72fe)](https://codebeat.co/projects/github-com-alphatroya-networkactivityindicatormanager)

## Usage

Expand Down

0 comments on commit ed28b6a

Please sign in to comment.