LotameDMP-IOS

(★ 8)

This open source library can be leveraged by Lotame clients to collect data from within their iOS applications.

File Explorer

  • .gitignore
  • .travis.yml
  • _Pods.xcodeproj
  • build_framework.sh
  • LICENSE
  • LotameDMP.podspec
  • README.md
  • run-script.png

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

brew install

View Details ▼

Install a Homebrew formula or cask.

brew install {{formula|cask}}

Install a formula/cask:

brew install {{[-s|--build-from-source]}} {{formula}}

Build and install a formula from source (dependencies will still be installed from bottles):

brew install {{[-n|--dry-run]}} {{formula|cask}}

Download the manifest, print what would be installed but don't actually install anything:

🔍

brew update

View Details ▼

Fetch the newest version of Homebrew and all formulae from GitHub using `git` and perform any necessary migrations.
To upgrade all installed formulae, use `brew upgrade`.

brew {{[up|update]}}

Fetch the newest version of Homebrew and all formulae:

🔍

dict

View Details ▼

Dictionary that uses the DICT protocol.

dict {{[-D|--dbs]}}

List available databases:

dict {{[-i|--info]}} {{database_name}}

Get information about a database:

dict {{[-d|--database]}} {{database_name}} {{word}}

Look up a word in a specific database:

🔍

gem

View Details ▼

A package manager for the Ruby programming language.

gem search {{regex}} {{[-a|--all]}}

Search for remote gem(s) and show all available versions:

gem install {{gem_name}}

Install the latest version of a gem:

gem install {{gem_name}} {{[-v|--version]}} {{1.0.0}}

Install a specific version of a gem:

🔍

carthage

View Details ▼

A dependency management tool for Cocoa applications.

carthage update

Download the latest version of all dependencies mentioned in Cartfile, and build them:

carthage update --platform ios

Update dependencies, but only build for iOS:

carthage update --no-build

Update dependencies, but don't build any of them:

🔍

pod

View Details ▼

Dependency manager for Swift and Objective-C Cocoa projects.

pod init

Create a Podfile for the current project with the default contents:

pod install

Download and install all pods defined in the Podfile (that haven't been installed before):

pod list

List all available pods:

// repository documentation