psp 0.0.1

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 ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
@@ -0,0 +1,51 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ psp (0.0.1)
5
+ psp-toolchain (~> 0.0.2)
6
+ version (~> 1.0)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ activesupport (3.2.12)
12
+ i18n (~> 0.6)
13
+ multi_json (~> 1.0)
14
+ climate_control (0.0.3)
15
+ activesupport (>= 3.0)
16
+ cocaine (0.5.1)
17
+ climate_control (>= 0.0.3, < 1.0)
18
+ diff-lcs (1.2.1)
19
+ fuubar (1.1.0)
20
+ rspec (~> 2.0)
21
+ rspec-instafail (~> 0.2.0)
22
+ ruby-progressbar (~> 1.0.0)
23
+ i18n (0.6.4)
24
+ multi_json (1.6.1)
25
+ psp-toolchain (0.0.2)
26
+ activesupport (~> 3.2)
27
+ cocaine (~> 0.5)
28
+ slop (~> 3.4)
29
+ version (~> 1.0)
30
+ rake (10.0.3)
31
+ rspec (2.13.0)
32
+ rspec-core (~> 2.13.0)
33
+ rspec-expectations (~> 2.13.0)
34
+ rspec-mocks (~> 2.13.0)
35
+ rspec-core (2.13.1)
36
+ rspec-expectations (2.13.0)
37
+ diff-lcs (>= 1.1.3, < 2.0)
38
+ rspec-instafail (0.2.4)
39
+ rspec-mocks (2.13.0)
40
+ ruby-progressbar (1.0.2)
41
+ slop (3.4.4)
42
+ version (1.0.0)
43
+
44
+ PLATFORMS
45
+ ruby
46
+
47
+ DEPENDENCIES
48
+ fuubar (~> 1.1)
49
+ psp!
50
+ rake (~> 10.0)
51
+ rspec (~> 2.13)
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2013 Ryan Scott Lewis <ryan@rynet.us>.
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,19 @@
1
+ # PSP
2
+
3
+ An open-source toolchain and SDK for PSP homebrew development glued together with Ruby.
4
+
5
+ ## Install
6
+
7
+ ### Bundler: `gem 'psp'`
8
+
9
+ ### RubyGems: `gem install psp`
10
+
11
+ ## Usage
12
+
13
+ > Usage
14
+
15
+ ## Copyright
16
+
17
+ Copyright © 2013 Ryan Scott Lewis <ryan@rynet.us>.
18
+
19
+ The MIT License (MIT) - See LICENSE for further details.
@@ -0,0 +1,24 @@
1
+ require 'pathname'
2
+ require 'rake/version_task'
3
+ require 'rubygems/specification'
4
+ require 'rubygems/package_task'
5
+
6
+ $project_path = Pathname.new(__FILE__).dirname.expand_path
7
+ $spec = Gem::Specification.load( Pathname.glob( $project_path.join('*.gemspec') ).first.to_s )
8
+
9
+ Rake::TaskManager.record_task_metadata = true
10
+
11
+ Rake::VersionTask.new do |t|
12
+ t.with_git_tag = true
13
+ end
14
+
15
+ Gem::PackageTask.new($spec) do |t|
16
+ t.need_zip = false
17
+ t.need_tar = false
18
+ end
19
+
20
+ task :default do
21
+ Rake::application.options.show_tasks = :tasks # this solves sidewaysmilk problem
22
+ Rake::application.options.show_task_pattern = //
23
+ Rake::application.display_tasks_and_comments
24
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.0.1
@@ -0,0 +1,6 @@
1
+ require 'version'
2
+
3
+ # An open-source toolchain and SDK for PSP homebrew development glued together with Ruby.
4
+ module PSP
5
+ is_versioned
6
+ end
@@ -0,0 +1,30 @@
1
+ require 'pathname'
2
+
3
+ Gem::Specification.new do |s|
4
+
5
+ # Variables
6
+ s.name = Pathname.new(__FILE__).basename('.gemspec').to_s
7
+ s.author = 'Ryan Scott Lewis'
8
+ s.email = 'ryan@rynet.us'
9
+ s.summary = 'An open-source toolchain and SDK for PSP homebrew development glued together with Ruby.'
10
+ s.description = s.summary
11
+ s.license = 'MIT'
12
+
13
+ # Dependencies
14
+ s.add_dependency 'version', '~> 1.0'
15
+ s.add_dependency 'psp-toolchain', '~> 0.0.2'
16
+ s.add_development_dependency 'rake', '~> 10.0'
17
+ s.add_development_dependency 'rspec', '~> 2.13'
18
+ s.add_development_dependency 'fuubar', '~> 1.1'
19
+
20
+ # Pragmatically set variables
21
+ s.homepage = "http://github.com/RyanScottLewis/#{s.name}"
22
+ s.version = Pathname.glob('VERSION*').first.read rescue '0.0.0'
23
+ s.require_paths = ['lib']
24
+ s.files = %w(Gemfile Gemfile.lock LICENSE VERSION Rakefile README.md)
25
+
26
+ s.files << "#{s.name}.gemspec"
27
+ s.files += Dir.glob('lib/**/*.rb')
28
+ s.files += Dir.glob('spec/**/*')
29
+
30
+ end
@@ -0,0 +1,9 @@
1
+ require 'spec_helper'
2
+
3
+ describe PSP::Toolchain do
4
+
5
+ it 'should have specs' do
6
+ pending
7
+ end
8
+
9
+ end
@@ -0,0 +1,7 @@
1
+ require 'bundler/setup'
2
+ require 'psp/toolchain'
3
+
4
+ RSpec.configure do |config|
5
+ config.treat_symbols_as_metadata_keys_with_true_values = true
6
+ config.order = 'random'
7
+ end
metadata ADDED
@@ -0,0 +1,143 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: psp
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Ryan Scott Lewis
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-03-14 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: version
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: '1.0'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ version: '1.0'
30
+ - !ruby/object:Gem::Dependency
31
+ name: psp-toolchain
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ~>
36
+ - !ruby/object:Gem::Version
37
+ version: 0.0.2
38
+ type: :runtime
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ~>
44
+ - !ruby/object:Gem::Version
45
+ version: 0.0.2
46
+ - !ruby/object:Gem::Dependency
47
+ name: rake
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ~>
52
+ - !ruby/object:Gem::Version
53
+ version: '10.0'
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ~>
60
+ - !ruby/object:Gem::Version
61
+ version: '10.0'
62
+ - !ruby/object:Gem::Dependency
63
+ name: rspec
64
+ requirement: !ruby/object:Gem::Requirement
65
+ none: false
66
+ requirements:
67
+ - - ~>
68
+ - !ruby/object:Gem::Version
69
+ version: '2.13'
70
+ type: :development
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ~>
76
+ - !ruby/object:Gem::Version
77
+ version: '2.13'
78
+ - !ruby/object:Gem::Dependency
79
+ name: fuubar
80
+ requirement: !ruby/object:Gem::Requirement
81
+ none: false
82
+ requirements:
83
+ - - ~>
84
+ - !ruby/object:Gem::Version
85
+ version: '1.1'
86
+ type: :development
87
+ prerelease: false
88
+ version_requirements: !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ~>
92
+ - !ruby/object:Gem::Version
93
+ version: '1.1'
94
+ description: An open-source toolchain and SDK for PSP homebrew development glued together
95
+ with Ruby.
96
+ email: ryan@rynet.us
97
+ executables: []
98
+ extensions: []
99
+ extra_rdoc_files: []
100
+ files:
101
+ - Gemfile
102
+ - Gemfile.lock
103
+ - LICENSE
104
+ - VERSION
105
+ - Rakefile
106
+ - README.md
107
+ - psp.gemspec
108
+ - lib/psp.rb
109
+ - spec/psp/toolchain_spec.rb
110
+ - spec/spec_helper.rb
111
+ homepage: http://github.com/RyanScottLewis/psp
112
+ licenses:
113
+ - MIT
114
+ post_install_message:
115
+ rdoc_options: []
116
+ require_paths:
117
+ - lib
118
+ required_ruby_version: !ruby/object:Gem::Requirement
119
+ none: false
120
+ requirements:
121
+ - - ! '>='
122
+ - !ruby/object:Gem::Version
123
+ version: '0'
124
+ segments:
125
+ - 0
126
+ hash: -4503532787633363829
127
+ required_rubygems_version: !ruby/object:Gem::Requirement
128
+ none: false
129
+ requirements:
130
+ - - ! '>='
131
+ - !ruby/object:Gem::Version
132
+ version: '0'
133
+ segments:
134
+ - 0
135
+ hash: -4503532787633363829
136
+ requirements: []
137
+ rubyforge_project:
138
+ rubygems_version: 1.8.25
139
+ signing_key:
140
+ specification_version: 3
141
+ summary: An open-source toolchain and SDK for PSP homebrew development glued together
142
+ with Ruby.
143
+ test_files: []