Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
deployment
clangScanBuildReports
test/test-reports

.svn
build
DerivedData
svnignore.*
*.svnignore
*.DS_Store
*.mode1v3
*.pbxuser

*xcuserdata*
*.xcworkspace
*.xccheckout

.idea
._*
26 changes: 26 additions & 0 deletions REFormattedNumberField-iOS-dynamic copy-Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>com.healthjoy.$(PRODUCT_NAME:rfc1034identifier)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
</plist>
26 changes: 26 additions & 0 deletions REFormattedNumberField-iOS-dynamic/Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>com.healthjoy.$(PRODUCT_NAME:rfc1034identifier)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
</plist>
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
//
// REFormattedNumberField-iOS-dynamic.h
// REFormattedNumberField-iOS-dynamic
//
// Created by Oleksandr Dodatko on 3/26/15.
// Copyright (c) 2015 healthjoy. All rights reserved.
//

#import <UIKit/UIKit.h>

//! Project version number for REFormattedNumberField-iOS-dynamic.
FOUNDATION_EXPORT double REFormattedNumberField_iOS_dynamicVersionNumber;

//! Project version string for REFormattedNumberField-iOS-dynamic.
FOUNDATION_EXPORT const unsigned char REFormattedNumberField_iOS_dynamicVersionString[];

// In this header, you should import all the public headers of your framework using statements like #import <REFormattedNumberField_iOS_dynamic/PublicHeader.h>


2 changes: 1 addition & 1 deletion REFormattedNumberField.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Pod::Spec.new do |s|
s.authors = { 'Roman Efimov' => 'romefimov@gmail.com' }
s.homepage = 'https://github.com/romaonthego/REFormattedNumberField'
s.summary = 'UITextField subclass that allows number input in a predefined format.'
s.source = { :git => 'https://github.com/romaonthego/REFormattedNumberField.git',
s.source = { :git => 'https://github.com/kevensya/REFormattedNumberField.git',
:tag => s.version.to_s }
s.license = { :type => "MIT", :file => "LICENSE" }

Expand Down
Loading