-
Notifications
You must be signed in to change notification settings - Fork 1
/
RNAWSCognito.podspec
24 lines (20 loc) · 981 Bytes
/
RNAWSCognito.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
# coding: utf-8
require 'json'
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
Pod::Spec.new do |s|
s.name = "RNAWSCognito"
s.version = package['version']
s.requires_arc = true
s.platforms = { :ios => "8.0" }
s.license = { :file => 'LICENSE.txt' }
s.homepage = "https://github.com/aws/aws-amplify/tree/master/packages/amazon-cognito-identity-js"
s.author = "Amazon"
s.summary = "Amazon Cognito Identity SDK for JavaScript"
s.description = <<-DESC
The Amazon Cognito Identity SDK for JavaScript allows JavaScript enabled applications to sign-up users, authenticate users, view, delete, and update user attributes within the Amazon Cognito Identity service.
DESC
s.source = { :git => "https://github.com/aws/aws-amplify.git", :tag => "amazon-cognito-identity-js@#{s.version.to_s}" }
s.source_files = 'ios/RNAWSCognito.{h,m}'
s.dependency 'React'
s.dependency 'JKBigInteger2', '0.0.5'
end