XcodePages 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +7 -1
- data/lib/XcodePages.rb +1 -1
- data/lib/XcodePages/version.rb +1 -1
- metadata +2 -8
data/README.rdoc
CHANGED
@@ -1,7 +1,13 @@
|
|
1
1
|
= Xcode Pages
|
2
2
|
|
3
3
|
The XcodePages gem helps you publish documentation from within Xcode using
|
4
|
-
{Doxygen}[http://www.stack.nl/~dimitri/doxygen/].
|
4
|
+
{Doxygen}[http://www.stack.nl/~dimitri/doxygen/]. On Mountain Lion,
|
5
|
+
prerequisites include {Doxygen
|
6
|
+
1.8.2}[http://ftp.stack.nl/pub/users/dimitri/Doxygen-1.8.2.dmg] or above and
|
7
|
+
optionally {GraphViz
|
8
|
+
2.28.0}[http://www.graphviz.org/pub/graphviz/stable/macos/lion/graphviz-2.28.0.pkg]
|
9
|
+
stable release or above. Drag the Doxygen application to +/Applications+ as
|
10
|
+
normal. Double-click the GraphViz package to install it.
|
5
11
|
|
6
12
|
The term 'Pages' comes from the ultimate goal: to publish the HTML web pages on
|
7
13
|
the Internet somewhere appropriate, e.g. on GitHub via the +gh-pages+ {branch
|
data/lib/XcodePages.rb
CHANGED
@@ -68,7 +68,7 @@ module XcodePages
|
|
68
68
|
# repeating the same number if they are the same.
|
69
69
|
def self.project_number
|
70
70
|
project_number = "v#{marketing_version}"
|
71
|
-
project_number << "
|
71
|
+
project_number << " (#{build_version})" if build_version != marketing_version
|
72
72
|
project_number
|
73
73
|
end
|
74
74
|
|
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.1.
|
4
|
+
version: 0.1.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2013-02-05 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rake
|
@@ -74,18 +74,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
74
74
|
- - ! '>='
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
|
-
segments:
|
78
|
-
- 0
|
79
|
-
hash: -3500388079770849079
|
80
77
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
81
78
|
none: false
|
82
79
|
requirements:
|
83
80
|
- - ! '>='
|
84
81
|
- !ruby/object:Gem::Version
|
85
82
|
version: '0'
|
86
|
-
segments:
|
87
|
-
- 0
|
88
|
-
hash: -3500388079770849079
|
89
83
|
requirements: []
|
90
84
|
rubyforge_project: XcodePages
|
91
85
|
rubygems_version: 1.8.24
|