Skip to content

Commit

Permalink
Added podspec for the Gen library.
Browse files Browse the repository at this point in the history
  • Loading branch information
mmower committed Sep 8, 2012
1 parent 8617002 commit 96bd9a5
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Gen/1.0/Gen.podspec
@@ -0,0 +1,18 @@
Pod::Spec.new do |s|
s.name = "Gen"
s.version = "1.0"
s.summary = "Code generator for creating Objective-C code."
s.description = <<-DESC
Gen is a code generating framework for creating Objective-C and based on modelling
classes, protocols, methods, properties, etc.. using Gen classes. The final result
being converted into .m/.h files.
DESC
s.homepage = "https://github.com/mmower/Gen"
s.license = 'BSD'
s.author = { "Matt Mower" => "self@mattmower.com" }
s.source = { :git => "https://github.com/mmower/Gen.git", :tag => "1.0" }
s.ios.deployment_target = '5.0'
s.osx.deployment_target = '10.7'
s.source_files = 'Gen', 'Gen/**/*.{h,m}'
s.requires_arc = true
end

0 comments on commit 96bd9a5

Please sign in to comment.