psp-toolchain 0.0.1 → 0.0.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/Gemfile.lock +1 -1
- data/README.md +4 -6
- data/Rakefile +5 -0
- data/VERSION +1 -1
- data/bin/psp-toolkit +3 -1
- data/psp-toolchain.gemspec +0 -2
- data/spec/psp/{toolchain/toolchain_spec.rb → toolchain_spec.rb} +0 -0
- metadata +5 -7
- data/lib/psp/toolchain/start.rb +0 -3
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -4,6 +4,8 @@ An open-source toolchain for PSP homebrew development built in Ruby.
|
|
4
4
|
|
5
5
|
## Install
|
6
6
|
|
7
|
+
### Bundler: `gem 'psp-toolchain'`
|
8
|
+
|
7
9
|
### RubyGems: `gem install psp-toolchain`
|
8
10
|
|
9
11
|
## Dependencies
|
@@ -32,13 +34,9 @@ The following dependencies must be installed (preferably via `apt-get`, `yum`, `
|
|
32
34
|
|
33
35
|
## Usage
|
34
36
|
|
35
|
-
Simply run `
|
36
|
-
|
37
|
-
If the dependencies are not met, you can run the `psp-toolchain` executable to manually compile the toolchain.
|
38
|
-
|
39
|
-
## CLI
|
37
|
+
Simply run `psp-toolchain` and if all dependencies are installed, the toolchain will be compiled.
|
40
38
|
|
41
|
-
|
39
|
+
## CLI Options
|
42
40
|
|
43
41
|
`--prefix`/`-p`
|
44
42
|
|
data/Rakefile
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
require 'pathname'
|
2
|
+
require 'rake/version_task'
|
2
3
|
require 'rubygems/specification'
|
3
4
|
require 'rubygems/package_task'
|
4
5
|
|
@@ -7,6 +8,10 @@ $spec = Gem::Specification.load( Pathname.glob( $project_path.join('*.ge
|
|
7
8
|
|
8
9
|
Rake::TaskManager.record_task_metadata = true
|
9
10
|
|
11
|
+
Rake::VersionTask.new do |t|
|
12
|
+
t.with_git_tag = true
|
13
|
+
end
|
14
|
+
|
10
15
|
Gem::PackageTask.new($spec) do |t|
|
11
16
|
t.need_zip = false
|
12
17
|
t.need_tar = false
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.2
|
data/bin/psp-toolkit
CHANGED
data/psp-toolchain.gemspec
CHANGED
File without changes
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: psp-toolchain
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -126,8 +126,7 @@ dependencies:
|
|
126
126
|
description: An open-source toolchain for PSP homebrew development built in Ruby.
|
127
127
|
email: ryan@rynet.us
|
128
128
|
executables: []
|
129
|
-
extensions:
|
130
|
-
- lib/psp/toolchain/start.rb
|
129
|
+
extensions: []
|
131
130
|
extra_rdoc_files: []
|
132
131
|
files:
|
133
132
|
- Gemfile
|
@@ -141,9 +140,8 @@ files:
|
|
141
140
|
- lib/psp/toolchain/application.rb
|
142
141
|
- lib/psp/toolchain/error.rb
|
143
142
|
- lib/psp/toolchain/errors/invalid_prefix.rb
|
144
|
-
- lib/psp/toolchain/start.rb
|
145
143
|
- lib/psp/toolchain.rb
|
146
|
-
- spec/psp/
|
144
|
+
- spec/psp/toolchain_spec.rb
|
147
145
|
- spec/spec_helper.rb
|
148
146
|
homepage: http://github.com/RyanScottLewis/psp-toolchain
|
149
147
|
licenses:
|
@@ -160,7 +158,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
160
158
|
version: '0'
|
161
159
|
segments:
|
162
160
|
- 0
|
163
|
-
hash:
|
161
|
+
hash: 117431018224124837
|
164
162
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
165
163
|
none: false
|
166
164
|
requirements:
|
@@ -169,7 +167,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
169
167
|
version: '0'
|
170
168
|
segments:
|
171
169
|
- 0
|
172
|
-
hash:
|
170
|
+
hash: 117431018224124837
|
173
171
|
requirements: []
|
174
172
|
rubyforge_project:
|
175
173
|
rubygems_version: 1.8.25
|
data/lib/psp/toolchain/start.rb
DELETED