XcodePages 0.0.7 → 0.1.0
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.rdoc +19 -2
- data/lib/XcodePages/version.rb +1 -1
- metadata +23 -8
data/README.rdoc
CHANGED
|
@@ -29,8 +29,6 @@ Set the external build target up as follows.
|
|
|
29
29
|
- Directory: None
|
|
30
30
|
- Pass build setting in environment: Yes
|
|
31
31
|
|
|
32
|
-
Leave Build Settings and Phases as defaults.
|
|
33
|
-
|
|
34
32
|
Note that the arguments above tell the shell to run
|
|
35
33
|
<code>$HOME/.rvm/bin/rvm-auto-ruby</code>. This assumes you are running
|
|
36
34
|
{RVM}[http://beginrescueend.com/].
|
|
@@ -39,6 +37,25 @@ Also, do not try to promote your Ruby path to the Build Tool setting unless you
|
|
|
39
37
|
have a fixed path to Ruby, e.g. +/usr/bin/ruby+. Xcode does *not* make
|
|
40
38
|
environment variables substitutions within the Build Tool setting.
|
|
41
39
|
|
|
40
|
+
==== Build Settings
|
|
41
|
+
|
|
42
|
+
Leave Build Settings and Phases as defaults, that is, unless you need
|
|
43
|
+
to override your +PATH+ to add some non-standard executable
|
|
44
|
+
locations. For instance, if you install {Doxygen.app using the OS X
|
|
45
|
+
disk image}[http://www.stack.nl/~dimitri/doxygen/download.html] rather
|
|
46
|
+
than installing Doxygen using MacPorts and such, then the +doxygen+
|
|
47
|
+
binary lives at +/Applications/Doxygen.app/Contents/Resources+. You
|
|
48
|
+
will need to add that path element to your Unix +PATH+ environment
|
|
49
|
+
variable. Similarly, if you install {Graphviz from some
|
|
50
|
+
package}[http://www.graphviz.org/Download_macos.php] and it lives at
|
|
51
|
+
another unusual location, you will need to add that too. Best place
|
|
52
|
+
for adding this for Xcode is within Build Settings. Note, Xcode's
|
|
53
|
+
sub-processes do _not_ pick up your Bash profile, so setting these
|
|
54
|
+
search paths up for your user account will not work. Instead, add a
|
|
55
|
+
setting like this to your Pages build target.
|
|
56
|
+
|
|
57
|
+
PATH = /bin:/usr/bin:/usr/local/bin:/Applications/Doxygen.app/Contents/Resources:/usr/local/graphviz-2.14/bin
|
|
58
|
+
|
|
42
59
|
=== Step 3
|
|
43
60
|
|
|
44
61
|
Set up a new +Doxyfile+ in your project's source root containing four Doxygen settings:
|
data/lib/XcodePages/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: XcodePages
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0
|
|
4
|
+
version: 0.1.0
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,11 +9,11 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2012-
|
|
12
|
+
date: 2012-05-25 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rake
|
|
16
|
-
requirement:
|
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
|
17
17
|
none: false
|
|
18
18
|
requirements:
|
|
19
19
|
- - ! '>='
|
|
@@ -21,10 +21,15 @@ dependencies:
|
|
|
21
21
|
version: '0'
|
|
22
22
|
type: :development
|
|
23
23
|
prerelease: false
|
|
24
|
-
version_requirements:
|
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
26
|
+
requirements:
|
|
27
|
+
- - ! '>='
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
version: '0'
|
|
25
30
|
- !ruby/object:Gem::Dependency
|
|
26
31
|
name: activesupport
|
|
27
|
-
requirement:
|
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
|
28
33
|
none: false
|
|
29
34
|
requirements:
|
|
30
35
|
- - ! '>='
|
|
@@ -32,7 +37,12 @@ dependencies:
|
|
|
32
37
|
version: '0'
|
|
33
38
|
type: :runtime
|
|
34
39
|
prerelease: false
|
|
35
|
-
version_requirements:
|
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
41
|
+
none: false
|
|
42
|
+
requirements:
|
|
43
|
+
- - ! '>='
|
|
44
|
+
- !ruby/object:Gem::Version
|
|
45
|
+
version: '0'
|
|
36
46
|
description: ! "\n Helps you publish HTML web pages on the Internet somewhere appropriate,
|
|
37
47
|
e.g.\n on GitHub via the gh-pages branch feature.\n\n Works for Objective-C
|
|
38
48
|
projects built using Apple's Xcode IDE and\n consequently focuses on documentation
|
|
@@ -64,17 +74,22 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
64
74
|
- - ! '>='
|
|
65
75
|
- !ruby/object:Gem::Version
|
|
66
76
|
version: '0'
|
|
77
|
+
segments:
|
|
78
|
+
- 0
|
|
79
|
+
hash: -3500388079770849079
|
|
67
80
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
68
81
|
none: false
|
|
69
82
|
requirements:
|
|
70
83
|
- - ! '>='
|
|
71
84
|
- !ruby/object:Gem::Version
|
|
72
85
|
version: '0'
|
|
86
|
+
segments:
|
|
87
|
+
- 0
|
|
88
|
+
hash: -3500388079770849079
|
|
73
89
|
requirements: []
|
|
74
90
|
rubyforge_project: XcodePages
|
|
75
|
-
rubygems_version: 1.8.
|
|
91
|
+
rubygems_version: 1.8.24
|
|
76
92
|
signing_key:
|
|
77
93
|
specification_version: 3
|
|
78
94
|
summary: Helps you publish documentation from within Xcode using Doxygen
|
|
79
95
|
test_files: []
|
|
80
|
-
has_rdoc:
|