psp-toolchain 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- psp-toolchain (0.0.1)
4
+ psp-toolchain (0.0.2)
5
5
  activesupport (~> 3.2)
6
6
  cocaine (~> 0.5)
7
7
  slop (~> 3.4)
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 `gem install psp-toolchain` and if all dependencies are installed, the toolchain will be compiled.
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
- The CLI interface is used to install the PSP toolchain to a specific location.
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
1
+ 0.0.2
data/bin/psp-toolkit CHANGED
@@ -1,2 +1,4 @@
1
1
  #!/usr/bin/env ruby
2
- require 'psp/toolchain/start'
2
+ require 'psp/toolchain'
3
+
4
+ PSP::Toolchain.start
@@ -30,6 +30,4 @@ Gem::Specification.new do |s|
30
30
  s.files += Dir.glob('lib/**/*.rb')
31
31
  s.files += Dir.glob('spec/**/*')
32
32
 
33
- s.extensions << 'lib/psp/toolchain/start.rb'
34
-
35
33
  end
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.1
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/toolchain/toolchain_spec.rb
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: 1668355172905340546
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: 1668355172905340546
170
+ hash: 117431018224124837
173
171
  requirements: []
174
172
  rubyforge_project:
175
173
  rubygems_version: 1.8.25
@@ -1,3 +0,0 @@
1
- require 'psp/toolchain'
2
-
3
- PSP::Toolchain.start