This repository has been archived by the owner on Aug 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Podspec file added and installation process simplified
- Loading branch information
Artem Yarulin
committed
Sep 9, 2015
1 parent
ec2a95e
commit a49371a
Showing
3 changed files
with
20 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "react-native-eval" | ||
s.version = "0.1.0" | ||
s.summary = "Call any JS functions from your native code" | ||
s.description = "React has a good tutorial how to integrate React View to alrady existsing application, but it doesn't provide a good way if you decided to migrate some of your business logic to JS first while maintaining the same UI" | ||
s.homepage = "https://github.com/artemyarulin/react-native-eval" | ||
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
s.author = { "Artem Yarulin" => "artem.yarulin@fessguid.com" } | ||
s.platform = :ios, "7.0" | ||
s.source = { :git => "https://github.com/artemyarulin/react-native-eval.git", :tag => s.version.to_s } | ||
s.source_files = ["react-native-eval/RNMEvaluator.{h,m}"] | ||
s.public_header_files = "react-native-eval/RNMEvaluator.h" | ||
s.requires_arc = true | ||
s.dependency "React", "> 0.8.0" | ||
end |