Skip to content

Commit

Permalink
Release 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bang590 committed Aug 26, 2015
1 parent 0f049d6 commit af2dfae
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions JSPatch.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "JSPatch"
s.version = "0.1"
s.version = "0.1.1"
s.summary = "JSPatch bridge Objective-C and JavaScript. You can call any" \
" Objective-C class and method in JavaScript by just" \
" including a small engine."
Expand All @@ -21,16 +21,19 @@ Pod::Spec.new do |s|
s.platform = :ios, "6.0"
s.source = { :git => "https://github.com/bang590/JSPatch.git", :tag => s.version }

s.source_files = "JSPatch/*.{h,m}"
s.public_header_files = "JSPatch/*.h"

s.resources = "JSPatch/*.js"
s.frameworks = "Foundation"
s.weak_framework = "JavaScriptCore"
s.default_subspec = 'Core'

s.subspec 'Extensions' do |ext|
ext.source_files = "Extensions/**/*.{h,m}"
ext.public_header_files = "Extensions/**/*.h"
s.subspec 'Core' do |ss|
ss.source_files = "JSPatch/*.{h,m}"
ss.public_header_files = "JSPatch/*.h"
end

s.subspec 'Extensions' do |ss|
ss.source_files = "Extensions/**/*.{h,m}"
ss.public_header_files = "Extensions/**/*.h"
ss.dependency 'JSPatch/Core'
end
end

0 comments on commit af2dfae

Please sign in to comment.