Skip to content

Commit

Permalink
organization
Browse files Browse the repository at this point in the history
Update pod spec, package and .gitignore files.
  • Loading branch information
david-livadaru-3pillarglobal committed Apr 16, 2018
1 parent bab9b19 commit 729a07b
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 9 deletions.
61 changes: 54 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Xcode
.DS_Store
*/build/*
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore

## Build generated
build/
DerivedData/

## Various settings
*.pbxuser
!default.pbxuser
*.mode1v3
Expand All @@ -9,10 +15,51 @@
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata
profile
xcuserdata/

## Other
*.moved-aside
DerivedData
.idea/
*.xcuserstate

## Obj-C/Swift specific
*.hmap
*.xccheckout
*.ipa
*.dSYM.zip
*.dSYM

## Playgrounds
timeline.xctimeline
playground.xcworkspace

# Swift Package Manager
#
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
# Packages/
.build/

# CocoaPods
#
# We recommend against adding the Pods directory to your .gitignore. However
# you should judge for yourself, the pros and cons are mentioned at:
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
#
# Pods/

# Carthage
#
# Add this line if you want to avoid checking in source code from Carthage dependencies.
Carthage/Checkouts

Carthage/Build

# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md

fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots
fastlane/test_output
3 changes: 2 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ let package = Package(
targets: [
.target(
name: "ios-charts",
dependencies: [])
dependencies: [],
path: "Sources")
]
)
2 changes: 1 addition & 1 deletion iOSCharts.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ Pod::Spec.new do |s|
s.author = "3Pillar Global"
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/3pillarlabs/ios-charts.git", :tag => "#{s.version}" }
s.source_files = "Sources/**/*.{h,m, swift}"
s.source_files = "Sources/*"
end

0 comments on commit 729a07b

Please sign in to comment.