This app provides monitoring and information features for the common freifunk user and the technical stuff of a freifunk community.
Code base is taken from a TUM Practical Course project and added here to see if Freifunk Altdorf can use it.
https://www.freifunk-altdorf.de
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
684 B
18 lines
684 B
6 years ago
|
Pod::Spec.new do |spec|
|
||
|
spec.name = 'DoubleConversion'
|
||
|
spec.version = '1.1.5'
|
||
|
spec.license = { :type => 'MIT' }
|
||
|
spec.homepage = 'https://github.com/google/double-conversion'
|
||
|
spec.summary = 'Efficient binary-decimal and decimal-binary conversion routines for IEEE doubles'
|
||
|
spec.authors = 'Google'
|
||
|
spec.prepare_command = 'mv src double-conversion'
|
||
|
spec.source = { :git => 'https://github.com/google/double-conversion.git',
|
||
|
:tag => "v#{spec.version}" }
|
||
|
spec.module_name = 'DoubleConversion'
|
||
|
spec.source_files = 'double-conversion/*.{h,cc}'
|
||
|
|
||
|
# Pinning to the same version as React.podspec.
|
||
|
spec.platforms = { :ios => "8.0", :tvos => "9.2" }
|
||
|
|
||
|
end
|