-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathNeeman.podspec
35 lines (26 loc) · 1.46 KB
/
Neeman.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
Pod::Spec.new do |s|
s.name = "Neeman"
s.version = "1.2.2"
s.summary = "A framework for easily creating a hybrid app from a mobile friendly web app."
s.swift_version = '5.0'
s.description = <<-DESC
The idea behind Neeman is to help you easily create a usable Hibrid app from an existing web app.
It does this without getting in your way of adding additional native functionality. Try it out with your web app embeded in a native navigation stack.
You can then see if you need to reimplement certain features natively. The best way to save development time and still maintain a beautify user experience
is to keep your content rendered with HTML and implement your navigation natively.
## Getting Started
1. Create an Xcode project with the template best suiting your app.
2. Make one of your view controllers a WebViewController.
3. Set the **User Defined Runtime Attribute** `rootURLString` to the URL you which to display.
DESC
s.homepage = "http://intellum.com"
s.license = "MIT"
s.author = { "Stephen Williams" => "[email protected]" }
s.platform = :ios, "11.0"
s.source = { :git => "https://github.com/intellum/neeman.git", :tag => "#{s.version}" }
s.source_files = "Source/**/*.*"
s.exclude_files = "Classes/Exclude"
s.resources = "Resources/js/*.*", "Resources/Assets.xcassets", "Resources/*.lproj"
s.frameworks = "WebKit", "SafariServices"
s.requires_arc = true
end