Skip to content

Commit

Permalink
Merge pull request #136 from danieljvdm/master
Browse files Browse the repository at this point in the history
Fixed broken podspec for Cocoapods installations
  • Loading branch information
cocojoe committed Apr 2, 2018
2 parents ec6fcfc + 0efffa8 commit fff6acf
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 23 deletions.
19 changes: 19 additions & 0 deletions A0Auth0.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
require "json"

package = JSON.parse(File.read(File.join(__dir__, "package.json")))

Pod::Spec.new do |s|
s.name = "A0Auth0"
s.version = package["version"]
s.summary = "A0Auth0"
s.homepage = "https://github.com/auth0/react-native-auth0"
s.license = "MIT"
s.author = { "auth0" => "oss@auth0.com" }
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/auth0/react-native-auth0.git", :tag => "v#{s.version}" }
s.source_files = "ios/*.{h,m}"
s.requires_arc = true

s.dependency "React"
end

23 changes: 0 additions & 23 deletions ios/A0Auth0.podspec

This file was deleted.

0 comments on commit fff6acf

Please sign in to comment.