Skip to content

Commit

Permalink
made protocol secure storage public
Browse files Browse the repository at this point in the history
  • Loading branch information
martinmitrevski committed Jul 19, 2018
1 parent d4d389e commit eca41d2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions GirdersSwift.podspec
@@ -1,12 +1,12 @@
Pod::Spec.new do |s|
s.name = 'GirdersSwift'
s.version = '0.2.8'
s.version = '0.2.9'
s.summary = 'Girders for iOS, written in Swift.'
s.homepage = 'http://www.netcetera.com'
s.author = 'Netcetera'
s.description = 'A library that reduces development time for iOS Swift applications.'
s.platform = :ios, '9.0'
s.source = { :git => 'https://github.com/netceteragroup/GirdersSwift.git', :tag => '0.2.8' }
s.source = { :git => 'https://github.com/netceteragroup/GirdersSwift.git', :tag => '0.2.9' }
s.requires_arc = true
s.swift_version = "4.1"
s.module_name = 'GirdersSwift'
Expand Down
2 changes: 1 addition & 1 deletion GirdersSwift/src/main/swift/storage/KeychainStorage.swift
Expand Up @@ -4,7 +4,7 @@ import KeychainAccess

public class KeychainStorage: SecureStorage {

static let shared = KeychainStorage()
public static let shared = KeychainStorage()
private let keychain = Keychain(service: Bundle.main.bundleIdentifier!)

public func save(string: String?, forKey key: String) {
Expand Down

0 comments on commit eca41d2

Please sign in to comment.