Skip to content
This repository has been archived by the owner on Jul 16, 2023. It is now read-only.

Commit

Permalink
Fix podspec
Browse files Browse the repository at this point in the history
  • Loading branch information
msaps committed Jan 4, 2020
1 parent a6c1aae commit 0d878b5
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 29 deletions.
10 changes: 5 additions & 5 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@

source 'https://rubygems.org'

gem 'fastlane'
gem 'cocoapods'
gem 'danger'
gem 'danger-swiftlint'
gem 'fileutils'
gem 'json'
gem 'activesupport'
gem 'activesupport'
gem 'fastlane'
gem 'cocoapods', '~>1.8'
gem 'danger'
gem 'danger-swiftlint'
52 changes: 29 additions & 23 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,40 +2,46 @@ GEM
remote: https://rubygems.org/
specs:
CFPropertyList (3.0.2)
activesupport (6.0.2.1)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 0.7, < 2)
activesupport (4.2.11.1)
i18n (~> 0.7)
minitest (~> 5.1)
thread_safe (~> 0.3, >= 0.3.4)
tzinfo (~> 1.1)
zeitwerk (~> 2.2)
addressable (2.7.0)
public_suffix (>= 2.0.2, < 5.0)
algoliasearch (1.27.1)
httpclient (~> 2.8, >= 2.8.3)
json (>= 1.5.1)
atomos (0.1.3)
babosa (1.0.3)
claide (1.0.3)
claide-plugins (0.9.2)
cork
nap
open4 (~> 1.3)
cocoapods (1.0.1)
activesupport (>= 4.0.2)
claide (>= 1.0.0, < 2.0)
cocoapods-core (= 1.0.1)
cocoapods-deintegrate (>= 1.0.0, < 2.0)
cocoapods-downloader (>= 1.0.0, < 2.0)
cocoapods (1.8.4)
activesupport (>= 4.0.2, < 5)
claide (>= 1.0.2, < 2.0)
cocoapods-core (= 1.8.4)
cocoapods-deintegrate (>= 1.0.3, < 2.0)
cocoapods-downloader (>= 1.2.2, < 2.0)
cocoapods-plugins (>= 1.0.0, < 2.0)
cocoapods-search (>= 1.0.0, < 2.0)
cocoapods-stats (>= 1.0.0, < 2.0)
cocoapods-trunk (>= 1.0.0, < 2.0)
cocoapods-try (>= 1.0.0, < 2.0)
colored (~> 1.2)
cocoapods-trunk (>= 1.4.0, < 2.0)
cocoapods-try (>= 1.1.0, < 2.0)
colored2 (~> 3.1)
escape (~> 0.0.4)
fourflusher (~> 0.3.0)
molinillo (~> 0.4.5)
fourflusher (>= 2.3.0, < 3.0)
gh_inspector (~> 1.0)
molinillo (~> 0.6.6)
nap (~> 1.0)
xcodeproj (>= 1.1.0, < 2.0)
cocoapods-core (1.0.1)
activesupport (>= 4.0.2)
ruby-macho (~> 1.4)
xcodeproj (>= 1.11.1, < 2.0)
cocoapods-core (1.8.4)
activesupport (>= 4.0.2, < 6)
algoliasearch (~> 1.0)
concurrent-ruby (~> 1.1)
fuzzy_match (~> 2.0.4)
nap (~> 1.0)
cocoapods-deintegrate (1.0.4)
Expand Down Expand Up @@ -129,7 +135,7 @@ GEM
xcpretty (~> 0.3.0)
xcpretty-travis-formatter (>= 0.0.3)
fileutils (1.4.1)
fourflusher (0.3.2)
fourflusher (2.3.1)
fuzzy_match (2.0.4)
gh_inspector (1.1.3)
git (1.5.0)
Expand Down Expand Up @@ -163,7 +169,7 @@ GEM
http-cookie (1.0.3)
domain_name (~> 0.5)
httpclient (2.8.3)
i18n (1.7.0)
i18n (0.9.5)
concurrent-ruby (~> 1.0)
json (2.3.0)
jwt (2.1.0)
Expand All @@ -174,7 +180,7 @@ GEM
mini_magick (4.9.5)
mini_mime (1.0.2)
minitest (5.13.0)
molinillo (0.4.5)
molinillo (0.6.6)
multi_json (1.14.1)
multi_xml (0.6.0)
multipart-post (2.0.0)
Expand All @@ -197,6 +203,7 @@ GEM
uber (< 0.2.0)
retriable (3.1.2)
rouge (2.0.7)
ruby-macho (1.4.0)
rubyzip (1.3.0)
sawyer (0.8.2)
addressable (>= 2.3.5)
Expand Down Expand Up @@ -238,14 +245,13 @@ GEM
rouge (~> 2.0.7)
xcpretty-travis-formatter (1.0.0)
xcpretty (~> 0.2, >= 0.0.7)
zeitwerk (2.2.2)

PLATFORMS
ruby

DEPENDENCIES
activesupport
cocoapods
cocoapods (~> 1.8)
danger
danger-swiftlint
fastlane
Expand Down
6 changes: 5 additions & 1 deletion Randient.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@ Pod::Spec.new do |s|
s.name = "Randient"

s.ios.deployment_target = '9.0'
s.swift_version = '4.0'
if s.respond_to? 'swift_versions'
s.swift_versions = ['4.0', '4.1', '4.2', '5.0']
else
s.swift_version = '4.0'
end

s.requires_arc = true

Expand Down

0 comments on commit 0d878b5

Please sign in to comment.