Skip to content

Commit 7925137

Browse files
committedApr 15, 2017
bin folder
1 parent 4296872 commit 7925137

File tree

38 files changed

+214
-58
lines changed

38 files changed

+214
-58
lines changed
 

‎.buckconfig

Whitespace-only changes.

‎.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ DerivedData
1616
*.perspectivev3
1717
!default.perspectivev3
1818
xcuserdata
19+
*.DS_Store
1920

2021
## Other
2122
*.xccheckout
@@ -61,3 +62,5 @@ Carthage/Build
6162

6263
fastlane/report.xml
6364
fastlane/screenshots
65+
.buckd/
66+
.build_temp/

‎_layouts/default.html

-58
This file was deleted.

‎bin/BUCK

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
prebuilt_apple_framework(
2+
name = 'Buffer',
3+
framework = 'Buffer.framework',
4+
visibility = [
5+
'PUBLIC'
6+
]
7+
)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>CFBundleDevelopmentRegion</key>
6+
<string>English</string>
7+
<key>CFBundleIdentifier</key>
8+
<string>com.apple.xcode.dsym.com.s.Buffer</string>
9+
<key>CFBundleInfoDictionaryVersion</key>
10+
<string>6.0</string>
11+
<key>CFBundlePackageType</key>
12+
<string>dSYM</string>
13+
<key>CFBundleSignature</key>
14+
<string>????</string>
15+
<key>CFBundleShortVersionString</key>
16+
<string>1.0</string>
17+
<key>CFBundleVersion</key>
18+
<string>1</string>
19+
</dict>
20+
</plist>
Binary file not shown.

‎bin/Buffer.framework/Buffer

2.48 MB
Binary file not shown.
+139
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,139 @@
1+
// Generated by Apple Swift version 3.0.2 (swiftlang-800.0.63 clang-800.0.42.1)
2+
#pragma clang diagnostic push
3+
4+
#if defined(__has_include) && __has_include(<swift/objc-prologue.h>)
5+
# include <swift/objc-prologue.h>
6+
#endif
7+
8+
#pragma clang diagnostic ignored "-Wauto-import"
9+
#include <objc/NSObject.h>
10+
#include <stdint.h>
11+
#include <stddef.h>
12+
#include <stdbool.h>
13+
14+
#if !defined(SWIFT_TYPEDEFS)
15+
# define SWIFT_TYPEDEFS 1
16+
# if defined(__has_include) && __has_include(<uchar.h>)
17+
# include <uchar.h>
18+
# elif !defined(__cplusplus) || __cplusplus < 201103L
19+
typedef uint_least16_t char16_t;
20+
typedef uint_least32_t char32_t;
21+
# endif
22+
typedef float swift_float2 __attribute__((__ext_vector_type__(2)));
23+
typedef float swift_float3 __attribute__((__ext_vector_type__(3)));
24+
typedef float swift_float4 __attribute__((__ext_vector_type__(4)));
25+
typedef double swift_double2 __attribute__((__ext_vector_type__(2)));
26+
typedef double swift_double3 __attribute__((__ext_vector_type__(3)));
27+
typedef double swift_double4 __attribute__((__ext_vector_type__(4)));
28+
typedef int swift_int2 __attribute__((__ext_vector_type__(2)));
29+
typedef int swift_int3 __attribute__((__ext_vector_type__(3)));
30+
typedef int swift_int4 __attribute__((__ext_vector_type__(4)));
31+
typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2)));
32+
typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3)));
33+
typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
34+
#endif
35+
36+
#if !defined(SWIFT_PASTE)
37+
# define SWIFT_PASTE_HELPER(x, y) x##y
38+
# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y)
39+
#endif
40+
#if !defined(SWIFT_METATYPE)
41+
# define SWIFT_METATYPE(X) Class
42+
#endif
43+
#if !defined(SWIFT_CLASS_PROPERTY)
44+
# if __has_feature(objc_class_property)
45+
# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__
46+
# else
47+
# define SWIFT_CLASS_PROPERTY(...)
48+
# endif
49+
#endif
50+
51+
#if defined(__has_attribute) && __has_attribute(objc_runtime_name)
52+
# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))
53+
#else
54+
# define SWIFT_RUNTIME_NAME(X)
55+
#endif
56+
#if defined(__has_attribute) && __has_attribute(swift_name)
57+
# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))
58+
#else
59+
# define SWIFT_COMPILE_NAME(X)
60+
#endif
61+
#if defined(__has_attribute) && __has_attribute(objc_method_family)
62+
# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X)))
63+
#else
64+
# define SWIFT_METHOD_FAMILY(X)
65+
#endif
66+
#if defined(__has_attribute) && __has_attribute(noescape)
67+
# define SWIFT_NOESCAPE __attribute__((noescape))
68+
#else
69+
# define SWIFT_NOESCAPE
70+
#endif
71+
#if !defined(SWIFT_CLASS_EXTRA)
72+
# define SWIFT_CLASS_EXTRA
73+
#endif
74+
#if !defined(SWIFT_PROTOCOL_EXTRA)
75+
# define SWIFT_PROTOCOL_EXTRA
76+
#endif
77+
#if !defined(SWIFT_ENUM_EXTRA)
78+
# define SWIFT_ENUM_EXTRA
79+
#endif
80+
#if !defined(SWIFT_CLASS)
81+
# if defined(__has_attribute) && __has_attribute(objc_subclassing_restricted)
82+
# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA
83+
# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
84+
# else
85+
# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
86+
# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
87+
# endif
88+
#endif
89+
90+
#if !defined(SWIFT_PROTOCOL)
91+
# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
92+
# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
93+
#endif
94+
95+
#if !defined(SWIFT_EXTENSION)
96+
# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__)
97+
#endif
98+
99+
#if !defined(OBJC_DESIGNATED_INITIALIZER)
100+
# if defined(__has_attribute) && __has_attribute(objc_designated_initializer)
101+
# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))
102+
# else
103+
# define OBJC_DESIGNATED_INITIALIZER
104+
# endif
105+
#endif
106+
#if !defined(SWIFT_ENUM)
107+
# define SWIFT_ENUM(_type, _name) enum _name : _type _name; enum SWIFT_ENUM_EXTRA _name : _type
108+
# if defined(__has_feature) && __has_feature(generalized_swift_name)
109+
# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_EXTRA _name : _type
110+
# else
111+
# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) SWIFT_ENUM(_type, _name)
112+
# endif
113+
#endif
114+
#if !defined(SWIFT_UNAVAILABLE)
115+
# define SWIFT_UNAVAILABLE __attribute__((unavailable))
116+
#endif
117+
#if defined(__has_feature) && __has_feature(modules)
118+
@import UIKit;
119+
#endif
120+
121+
#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch"
122+
#pragma clang diagnostic ignored "-Wduplicate-method-arg"
123+
124+
@interface UICollectionView (SWIFT_EXTENSION(Buffer))
125+
@end
126+
127+
128+
@interface UICollectionViewCell (SWIFT_EXTENSION(Buffer))
129+
@end
130+
131+
132+
@interface UITableView (SWIFT_EXTENSION(Buffer))
133+
@end
134+
135+
136+
@interface UITableViewCell (SWIFT_EXTENSION(Buffer))
137+
@end
138+
139+
#pragma clang diagnostic pop

‎bin/Buffer.framework/Info.plist

731 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

‎bin/build.sh

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/bin/bash
2+
3+
cd bin
4+
rm -rf *.framework
5+
rm -rf *.dSYM
6+
cd ..
7+
rm -rf .build_temp
8+
mkdir .build_temp
9+
cd .build_temp
10+
echo "github \"alexdrone/Buffer\" \"master\"" >> Cartfile
11+
carthage update
12+
mv Carthage/Build/iOS/*.framework ../bin/
13+
mv Carthage/Build/iOS/*.dSYM ../bin/
14+
cd ..
15+
rm -rf .build_temp
16+
cd bin
File renamed without changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
//
2+
// BufferDiff.h
3+
// BufferDiff
4+
//
5+
// Created by Alex Usbergo on 24/05/16.
6+
// Copyright © 2016 Alex Usbergo. All rights reserved.
7+
//
8+
9+
#import <UIKit/UIKit.h>
10+
11+
//! Project version number for BufferDiff.
12+
FOUNDATION_EXPORT double BufferDiffVersionNumber;
13+
14+
//! Project version string for BufferDiff.
15+
FOUNDATION_EXPORT const unsigned char BufferDiffVersionString[];
16+
17+
// In this header, you should import all the public headers of your framework using statements like #import <BufferDiff/PublicHeader.h>
18+
19+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
framework module Buffer {
2+
umbrella header "Buffer.h"
3+
4+
export *
5+
module * { export * }
6+
}
7+
8+
module Buffer.Swift {
9+
header "Buffer-Swift.h"
10+
}
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)