-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRandomUtils.podspec
More file actions
19 lines (18 loc) · 843 Bytes
/
RandomUtils.podspec
File metadata and controls
19 lines (18 loc) · 843 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = "RandomUtils"
s.version = "0.2.4"
s.summary = "Utilities to work with random numbers, strings, selecting random elements in Objective-C."
s.description = <<-DESC
* Generating random numbers
* Generating random strings
* Selecting elements from NSArray randomly
* Selecting elements from NSDictionary randomly
* Seeded random generator
DESC
s.homepage = "https://github.com/grzegorzkrukowski/RandomUtils"
s.license = "MIT"
s.author = { "Grzegorz Krukowski" => "grkrukowski@gmail.com" }
s.platform = :ios
s.source = { :git => "https://github.com/grzegorzkrukowski/RandomUtils.git", :tag => "0.2.4" }
s.source_files = "RandomUtils"
end