Skip to content

Commit

Permalink
Merge branch 'release-1.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
gooichi committed Jan 16, 2017
2 parents efc29fa + 8dfd845 commit 61e8d3b
Show file tree
Hide file tree
Showing 14 changed files with 125,521 additions and 1 deletion.
28 changes: 28 additions & 0 deletions .dir-locals.el
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
;;; Directory Local Variables
;;; For more information see (info "(emacs) Directory Variables")

((nil
. ((eval . (setenv "DEVELOPER_DIR"
"/Applications/Xcode.app/Contents/Developer"))
(fill-column . 80)
(whitespace-style . (face lines indentation:space))
(eval . (set (make-local-variable 'project-dir)
(file-name-directory
(let ((d (dir-locals-find-file ".")))
(if (stringp d) d (car d))))))
(eval . (set (make-local-variable 'srcroot)
(expand-file-name "GSLCSVSerialization" project-dir)))))
(objc-mode
. ((flycheck-objc-clang-xcrun-sdk . "iphoneos10.2")
(flycheck-objc-clang-arc . t)
(flycheck-objc-clang-modules . t)
(flycheck-objc-clang-archs . ("arm64" "armv7"))
(flycheck-objc-clang-ios-version-min . "8.0")
(eval . (set 'flycheck-objc-clang-include-paths (list srcroot)))))
("GSLCSVSerializationTests"
. ((objc-mode
. ((eval . (add-to-list
'flycheck-objc-clang-framework-paths
(expand-file-name
"Platforms/iPhoneOS.platform/Developer/Library/Frameworks"
(getenv "DEVELOPER_DIR")))))))))
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
*~
.DS_Store
*.xccheckout
*.xcscmblueprint
*.xcuserdatad
12 changes: 12 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
language: objective-c
osx_image: xcode8.2
xcode_project: GSLCSVSerialization.xcodeproj
xcode_scheme: GSLCSVSerialization
xcode_sdk: iphonesimulator10.2
before_install:
- gem install xcpretty
script:
- ./scripts/travis-run-tests.sh | xcpretty -c
notifications:
slack:
secure: WI3co1BWswqcYsApRLmqsn9NZ/tsx9iCcBQNV27gFi5t77uAqrc4MTqKEgMrXhQPHCupn4aNfakvhXrcByhdEBMBctNUab+BXs/vkwQwx6VmLsNgYPw66SKJFhj0zJHgsIZjyIPjlHuyrUmctgSUZ6MOACz1vmdU2f/eR4jPWocrr3A7fFYOnrweXQzHGqzjPIFI5PjJBBFxPVaB0Tiq7YjkqDwg7FQMy6Z/EwrOT4Ews3+1C9vSI3QePhs1fiCZiY3Wdm3xglTkJVhz4Tz47EUY1m2A2KSa2se11DOxgdBm3Q/o9m85yP4Hjke+V2bFAvNj5SU2qIiA/hGAAr+xKZMLdj2hxIx8mC5dNgIX3FMehs954gEhSBPxesP/ZJTWpdaTrDeNkKKObK0Q+UnXaPxR0daoOaK2y3mt4F0GDiDBC5UoDvAceT9ULmkZtCabXp5Xtw6LKYdZCb/gTPMCWe1uIia83XInjnrdrjYSfER9Y/jI8FN7yuR9EhMCiiu1rKl2R2m3NpVhqh/dobwKGS+CFqMUMgMzS2DghMtBr4IfUNVT0gxS64q8iSxlV5t814P4+cuI+m6+y60YKQJA/IvQxg7xlneur9G2fIQOStMx3MZtH0cQRhMhXNbCVo1nt183qoI13mrqEyD6l1dT8fJfWTodK81FXh753m0aUA0=
15 changes: 15 additions & 0 deletions GSLCSVSerialization.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
Pod::Spec.new do |s|
s.name = 'GSLCSVSerialization'
s.version = '1.0.0'
s.author = 'GyazSquare'
s.license = { :type => 'MIT' }
s.homepage = 'https://github.com/GyazSquare/GSLCSVSerialization'
s.source = { :git => 'https://github.com/GyazSquare/GSLCSVSerialization.git', :tag => 'v1.0.0' }
s.summary = 'An Objective-C CSV parser for iOS, OS X, watchOS and tvOS.'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.6'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
s.requires_arc = true
s.source_files = 'GSLCSVSerialization/*.{h,m}'
end

0 comments on commit 61e8d3b

Please sign in to comment.