Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
66 changes: 66 additions & 0 deletions PrettyWeatherApp/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
# Created by https://www.gitignore.io

### Xcode ###
build/
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata
*.xccheckout
*.moved-aside
DerivedData
*.xcuserstate


### AppCode ###
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm

*.iml

## Directory-based project format:
.idea/
# if you remove the above rule, at least ignore the following:

# User-specific stuff:
# .idea/workspace.xml
# .idea/tasks.xml
# .idea/dictionaries

# Sensitive or high-churn files:
# .idea/dataSources.ids
# .idea/dataSources.xml
# .idea/sqlDataSources.xml
# .idea/dynamic.xml
# .idea/uiDesigner.xml

# Gradle:
# .idea/gradle.xml
# .idea/libraries

# Mongo Explorer plugin:
# .idea/mongoSettings.xml

## File-based project format:
*.ipr
*.iws

## Plugin-specific files:

# IntelliJ
out/

# mpeltonen/sbt-idea plugin
.idea_modules/

# JIRA plugin
atlassian-ide-plugin.xml

# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
15 changes: 15 additions & 0 deletions PrettyWeatherApp/Podfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Uncomment this line to define a global platform for your project
# platform :ios, '6.0'
use_frameworks!
inhibit_all_warnings!

target 'PrettyWeatherApp' do
pod 'Cartography', :git => "https://github.com/robb/Cartography.git", :tag => '0.6.0'
pod 'Alamofire', '~> 2.0'
pod 'SwiftyJSON', '~> 2.3.0'
pod 'WeatherIconsKit', :git => 'git@github.com:gscalzo/WeatherIconsKit.git'
pod 'FlickrKit', '~> 1.0.5'
pod 'FXBlurView', '~> 1.6.4'
pod 'LatoFont', :git => "https://github.com/gscalzo/LatoFont.git"
end

48 changes: 48 additions & 0 deletions PrettyWeatherApp/Podfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
PODS:
- Alamofire (2.0.2)
- Cartography (0.5.0)
- FlickrKit (1.0.5)
- FXBlurView (1.6.4)
- LatoFont (1.0.1)
- SwiftyJSON (2.3.0)
- WeatherIconsKit (1.0.0)

DEPENDENCIES:
- Alamofire (~> 2.0)
- Cartography (from `https://github.com/robb/Cartography.git`, tag `0.6.0`)
- FlickrKit (~> 1.0.5)
- FXBlurView (~> 1.6.4)
- LatoFont (from `https://github.com/gscalzo/LatoFont.git`)
- SwiftyJSON (~> 2.3.0)
- WeatherIconsKit (from `git@github.com:gscalzo/WeatherIconsKit.git`)

EXTERNAL SOURCES:
Cartography:
:git: https://github.com/robb/Cartography.git
:tag: 0.6.0
LatoFont:
:git: https://github.com/gscalzo/LatoFont.git
WeatherIconsKit:
:git: git@github.com:gscalzo/WeatherIconsKit.git

CHECKOUT OPTIONS:
Cartography:
:git: https://github.com/robb/Cartography.git
:tag: 0.6.0
LatoFont:
:commit: 2739e4c28c92c82ca2c7daf289a238d62af01c42
:git: https://github.com/gscalzo/LatoFont.git
WeatherIconsKit:
:commit: effa8476b88010a5ea6d3cfcf5fb81db87ff5bfa
:git: git@github.com:gscalzo/WeatherIconsKit.git

SPEC CHECKSUMS:
Alamofire: 8edbab00802a752bb5240cc2abe70e7e881488ad
Cartography: 314f5ed1495995760487161eeb7a8a0940d88ad3
FlickrKit: fc0ed009c5cb69db4d82e68f7acb02002ebe1a42
FXBlurView: db786c2561cb49a09ae98407f52460096ab8a44f
LatoFont: 0bfeace154ee2da6080123d0e80560f6e22b187d
SwiftyJSON: 8d6b61a70277ef2a5d710d372e06e7e2d87fb9e4
WeatherIconsKit: 84526a4cdf9da972c2866f24e40360420b1d40bf

COCOAPODS: 0.39.0.beta.4
19 changes: 19 additions & 0 deletions PrettyWeatherApp/Pods/Alamofire/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading