xcodeproj 0.4.1 → 0.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/README.md CHANGED
@@ -6,7 +6,7 @@ Xcodeproj lets you create and modify Xcode projects from [Ruby][ruby].
6
6
  Script boring management tasks or build Xcode-friendly libraries. Also includes
7
7
  support for Xcode workspaces (.xcworkspace) and configuration files (.xcconfig).
8
8
 
9
- It is used in [CocoaPods](https://github.com/cocoapods/cocoapods) to create a
9
+ It is used in [CocoaPods](https://github.com/CocoaPods/CocoaPods) to create a
10
10
  static library from scratch, for both iOS and OSX.
11
11
 
12
12
 
@@ -15,7 +15,7 @@ static library from scratch, for both iOS and OSX.
15
15
  Xcodeproj itself installs through RubyGems, the Ruby package manager. Install it
16
16
  by performing the following command:
17
17
 
18
- $ [sudo] gem install xcodeproj --pre
18
+ $ [sudo] gem install xcodeproj
19
19
 
20
20
 
21
21
  ## Colaborate
@@ -24,24 +24,17 @@ All Xcodeproj development happens on [GitHub][xcodeproj]. Contributing patches
24
24
  is really easy and gratifying. You even get push access when one of your patches
25
25
  is accepted.
26
26
 
27
- Follow [@CocoaPodsOrg][twitter] to get up to date information about what's
27
+ Follow [@CocoaPods][twitter] to get up to date information about what's
28
28
  going on in the CocoaPods world.
29
29
 
30
- If you're really oldschool and you want to discuss Xcodeproj development you
31
- can join #cocoapods on irc.freenode.net.
32
-
33
30
 
34
31
  ## LICENSE
35
32
 
36
33
  These works are available under the MIT license. See the [LICENSE][license] file
37
34
  for more info.
38
35
 
39
- Included in this package is the [inflector part of ActiveSupport][activesupport]
40
- which is also available under the MIT license.
41
-
42
- [twitter]: http://twitter.com/CocoaPodsOrg
36
+ [twitter]: http://twitter.com/CocoaPods
43
37
  [ruby]: http://www.ruby-lang.org/en/
44
38
  [xcodeproj]: https://github.com/cocoapods/xcodeproj
45
39
  [tickets]: https://github.com/cocoapods/xcodeproj/issues
46
40
  [license]: xcodeproj/blob/master/LICENSE
47
- [activesupport]: https://github.com/rails/rails/tree/2-3-stable/activesupport
@@ -11,7 +11,8 @@ module Xcodeproj
11
11
  end
12
12
 
13
13
  def initialize(argv)
14
- @xcodeproj_path = File.expand_path(argv.shift_argument)
14
+ xcodeproj_path = argv.shift_argument
15
+ @xcodeproj_path = File.expand_path(xcodeproj_path) if xcodeproj_path
15
16
  super unless argv.empty?
16
17
  end
17
18
 
@@ -246,7 +246,6 @@ module Xcodeproj
246
246
  extension = File.extname(file.path)
247
247
  header_extensions = Constants::HEADER_FILES_EXTENSIONS
248
248
  if (header_extensions.include?(extension))
249
- build_file.settings = { 'ATTRIBUTES' => ["Public"] }
250
249
  headers_build_phase.files << build_file
251
250
  else
252
251
  build_file.settings = { 'COMPILER_FLAGS' => compiler_flags } if compiler_flags && !compiler_flags.empty?
data/lib/xcodeproj.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module Xcodeproj
2
- VERSION = '0.4.1'
2
+ VERSION = '0.4.2'
3
3
 
4
4
  class PlainInformative < StandardError
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xcodeproj
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 0.4.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,14 +9,14 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-01-13 00:00:00.000000000 Z
12
+ date: 2013-01-24 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activesupport
16
16
  requirement: !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
- - - ~>
19
+ - - "~>"
20
20
  - !ruby/object:Gem::Version
21
21
  version: 3.2.6
22
22
  type: :runtime
@@ -24,7 +24,7 @@ dependencies:
24
24
  version_requirements: !ruby/object:Gem::Requirement
25
25
  none: false
26
26
  requirements:
27
- - - ~>
27
+ - - "~>"
28
28
  - !ruby/object:Gem::Version
29
29
  version: 3.2.6
30
30
  - !ruby/object:Gem::Dependency
@@ -32,7 +32,7 @@ dependencies:
32
32
  requirement: !ruby/object:Gem::Requirement
33
33
  none: false
34
34
  requirements:
35
- - - ~>
35
+ - - "~>"
36
36
  - !ruby/object:Gem::Version
37
37
  version: '1.2'
38
38
  type: :runtime
@@ -40,7 +40,7 @@ dependencies:
40
40
  version_requirements: !ruby/object:Gem::Requirement
41
41
  none: false
42
42
  requirements:
43
- - - ~>
43
+ - - "~>"
44
44
  - !ruby/object:Gem::Version
45
45
  version: '1.2'
46
46
  description: Xcodeproj lets you create and modify Xcode projects from Ruby. Script
@@ -96,18 +96,21 @@ require_paths:
96
96
  required_ruby_version: !ruby/object:Gem::Requirement
97
97
  none: false
98
98
  requirements:
99
- - - ! '>='
99
+ - - ">="
100
100
  - !ruby/object:Gem::Version
101
101
  version: '0'
102
+ segments:
103
+ - 0
104
+ hash: 4135320902358816609
102
105
  required_rubygems_version: !ruby/object:Gem::Requirement
103
106
  none: false
104
107
  requirements:
105
- - - ! '>='
108
+ - - ">="
106
109
  - !ruby/object:Gem::Version
107
110
  version: '0'
108
111
  requirements: []
109
112
  rubyforge_project:
110
- rubygems_version: 1.8.23
113
+ rubygems_version: 1.8.24
111
114
  signing_key:
112
115
  specification_version: 3
113
116
  summary: Create and modify Xcode projects from Ruby.