Skip to content

Commit

Permalink
Updated pod spec
Browse files Browse the repository at this point in the history
  • Loading branch information
markohlebar committed Jan 22, 2015
1 parent 1932612 commit 05884f5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
8 changes: 5 additions & 3 deletions BIND.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Pod::Spec.new do |s|

s.name = "BIND"
s.version = "1.0.2"
s.version = "1.0.3"
s.summary = "Data Binding and MVVM for iOS."

s.description = <<-DESC
Expand All @@ -18,10 +18,12 @@ Data Binding and MVVM for iOS.
s.author = { "Marko Hlebar" => "marko.hlebar@gmail.com" }
s.social_media_url = "https://twitter.com/markohlebar"

s.source = { :git => "https://github.com/markohlebar/BIND.git", :tag => "1.0.2" }
s.source = { :git => "https://github.com/markohlebar/BIND.git", :tag => "1.0.3" }
s.source_files = "BIND", "BIND/**/*.{h,m}"
# s.public_header_files = "Classes/**/*.h"

s.prefix_header_file = 'BIND-PrefixHeader.pch'
s.requires_arc = true
s.platform = :osx, "10.8"
s.platform = :ios, "7.0"

end
4 changes: 4 additions & 0 deletions BIND/Classes/BNDBinding.m
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,10 @@ - (instancetype)initWithCoder:(NSCoder *)aDecoder {
return [self init];
}

- (void)encodeWithCoder:(NSCoder *)aCoder {

}

- (instancetype)init {
self = [super init];
if (self) {
Expand Down

0 comments on commit 05884f5

Please sign in to comment.