diff --git a/.gitignore b/.gitignore
index b12e5ba..056e851 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,6 +1,57 @@
+## OS X files
.DS_Store
-/.build
-/Packages
-/*.xcodeproj
+.DS_Store?
+.Trashes
+.Spotlight-V100
+*.swp
+
+## Xcode build files
+DerivedData/
+build/
+
+## Xcode private settings
+*.pbxuser
+!default.pbxuser
+*.mode1v3
+!default.mode1v3
+*.mode2v3
+!default.mode2v3
+*.perspectivev3
+!default.perspectivev3
xcuserdata/
-Example/generated
\ No newline at end of file
+
+## Other
+*.xccheckout
+*.moved-aside
+*.xcuserstate
+*.xcscmblueprint
+
+## Obj-C/Swift specific
+*.hmap
+*.ipa
+*.dSYM.zip
+*.dSYM
+
+## Playgrounds
+timeline.xctimeline
+playground.xcworkspace
+
+# Swift Packages Manager
+Packages
+.build
+.swiftpm
+
+# CocoaPods
+Pods/
+
+# Carthage
+Carthage/Build
+
+# fastlane
+fastlane/report.xml
+fastlane/Preview.html
+fastlane/screenshots/**/*.png
+fastlane/test_output
+
+# AnalyticsGen
+analyticsgen-*.zip
diff --git a/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata b/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
deleted file mode 100644
index 919434a..0000000
--- a/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-
diff --git a/.swiftpm/xcode/xcshareddata/xcschemes/AnalyticsGen-Package.xcscheme b/.swiftpm/xcode/xcshareddata/xcschemes/AnalyticsGen-Package.xcscheme
deleted file mode 100644
index 400bea6..0000000
--- a/.swiftpm/xcode/xcshareddata/xcschemes/AnalyticsGen-Package.xcscheme
+++ /dev/null
@@ -1,114 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/.swiftpm/xcode/xcshareddata/xcschemes/AnalyticsGenTools.xcscheme b/.swiftpm/xcode/xcshareddata/xcschemes/AnalyticsGenTools.xcscheme
deleted file mode 100644
index 39bccf4..0000000
--- a/.swiftpm/xcode/xcshareddata/xcschemes/AnalyticsGenTools.xcscheme
+++ /dev/null
@@ -1,67 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/.swiftpm/xcode/xcshareddata/xcschemes/analyticsgen.xcscheme b/.swiftpm/xcode/xcshareddata/xcschemes/analyticsgen.xcscheme
deleted file mode 100644
index 49c7c5c..0000000
--- a/.swiftpm/xcode/xcshareddata/xcschemes/analyticsgen.xcscheme
+++ /dev/null
@@ -1,123 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/Makefile b/Makefile
index 01ecdb8..3201f00 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
PREFIX?=/usr/local
PRODUCT_NAME=analyticsgen
-PRODUCT_VERSION=0.5.8
+PRODUCT_VERSION=0.5.9
TEMPLATES_NAME=Templates
README_NAME=README.md
LICENSE_NAME=LICENSE
diff --git a/Sources/AnalyticsGen/main.swift b/Sources/AnalyticsGen/main.swift
index d0c4f71..7082d5b 100644
--- a/Sources/AnalyticsGen/main.swift
+++ b/Sources/AnalyticsGen/main.swift
@@ -20,6 +20,6 @@ private extension String {
// MARK: - Type Properties
- static let version = "0.5.8"
+ static let version = "0.5.9"
static let description = "Generate analytics code for you Swift iOS project"
}