public
Description: Useful rake tasks and scripts for iPhone development using Xcode.
Homepage:
Clone URL: git://github.com/juretta/iphone-project-tools.git
iphone-project-tools / ipt.gemspec
100644 51 lines (46 sloc) 1.664 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# -*- encoding: utf-8 -*-
 
Gem::Specification.new do |s|
  s.name = %q{ipt}
  s.version = "1.3.1"
 
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  s.authors = ["Stefan Saasen"]
  s.date = %q{2009-06-13}
  s.description = %q{Useful rake tasks and scripts for iPhone development using Xcode. Some tasks rely on external software. Please read the installation instructions. The scm related tasks assume that you are using git. You can just ignore those tasks and scripts if you are using a different scm.}
  s.email = %q{stefan@coravy.com}
  s.extra_rdoc_files = [
    "README.md"
  ]
  s.files = [
    "lib/ipt.rb",
     "lib/ipt/plist.rb",
     "lib/ipt/rake_helper.rb",
     "lib/ipt/readme.rb",
     "lib/ipt/tag_extraction.rb",
     "lib/ipt/version.rb",
     "tasks/changelog.tmpl",
     "tasks/gitignore.tmpl",
     "tasks/iphone_tools.rake",
     "tasks/rakefile.tmpl"
  ]
  s.has_rdoc = true
  s.homepage = %q{http://github.com/juretta/iphone-project-tools}
  s.rdoc_options = ["--charset=UTF-8"]
  s.require_paths = ["lib", "tasks"]
  s.rubygems_version = %q{1.3.1}
  s.summary = %q{Useful rake tasks and scripts for iPhone development using Xcode.}
  s.test_files = [
    "test/fixtures/tag_1.rb",
     "test/rake_helper_test.rb",
     "test/tag_extraction_test.rb",
     "test/test_helper.rb",
     "test/version_test.rb"
  ]
 
  if s.respond_to? :specification_version then
    current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
    s.specification_version = 2
 
    if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
    else
    end
  else
  end
end