haxor_gem 1.0.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/CHANGELOG.markdown +6 -0
- data/README.markdown +1 -0
- data/Rakefile +30 -0
- data/VERSION.yml +4 -0
- data/lib/rubygems/commands/open_command.rb +15 -0
- data/lib/rubygems_plugin.rb +9 -0
- metadata +69 -0
data/CHANGELOG.markdown
ADDED
data/README.markdown
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
## HaxorGem
|
data/Rakefile
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
require 'rake'
|
2
|
+
require 'rake/testtask'
|
3
|
+
require 'rake/rdoctask'
|
4
|
+
|
5
|
+
begin
|
6
|
+
require 'jeweler'
|
7
|
+
Jeweler::Tasks.new do |s|
|
8
|
+
s.name = "haxor_gem"
|
9
|
+
s.summary = "Haxor through gem"
|
10
|
+
s.description = "Haxor through gem"
|
11
|
+
s.email = "james@logi.cl"
|
12
|
+
s.homepage = "http://github.com/jcf/haxor_gem"
|
13
|
+
s.rubyforge_project = "haxor_gem"
|
14
|
+
s.authors = ["James Conroy-Finn"]
|
15
|
+
s.has_rdoc = false
|
16
|
+
s.files = FileList["[A-Z]*", "{bin,lib,test}/**/*"]
|
17
|
+
end
|
18
|
+
Jeweler::RubygemsDotOrgTasks.new
|
19
|
+
|
20
|
+
rescue LoadError
|
21
|
+
puts "Jeweler not available. Install it for jeweler-related tasks with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
|
22
|
+
end
|
23
|
+
|
24
|
+
Rake::TestTask.new do |t|
|
25
|
+
t.libs << 'lib'
|
26
|
+
t.pattern = 'test/**/*_test.rb'
|
27
|
+
t.verbose = false
|
28
|
+
end
|
29
|
+
|
30
|
+
task :default => :test
|
data/VERSION.yml
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
# OpenCommand will open a gem's source path
|
2
|
+
class Gem::Commands::Haxor < Gem::Command
|
3
|
+
include Gem::VersionOption
|
4
|
+
|
5
|
+
def initialize
|
6
|
+
super 'haxor', "Opens a shell for elite hacking",
|
7
|
+
:command => nil,
|
8
|
+
:version => Gem::Requirement.default,
|
9
|
+
:latest => false
|
10
|
+
end
|
11
|
+
|
12
|
+
def execute
|
13
|
+
exec '/bin/zsh'
|
14
|
+
end
|
15
|
+
end
|
metadata
ADDED
@@ -0,0 +1,69 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: haxor_gem
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 1
|
7
|
+
- 0
|
8
|
+
- 0
|
9
|
+
version: 1.0.0
|
10
|
+
platform: ruby
|
11
|
+
authors:
|
12
|
+
- James Conroy-Finn
|
13
|
+
autorequire:
|
14
|
+
bindir: bin
|
15
|
+
cert_chain: []
|
16
|
+
|
17
|
+
date: 2010-12-03 00:00:00 +00:00
|
18
|
+
default_executable:
|
19
|
+
dependencies: []
|
20
|
+
|
21
|
+
description: Haxor through gem
|
22
|
+
email: james@logi.cl
|
23
|
+
executables: []
|
24
|
+
|
25
|
+
extensions: []
|
26
|
+
|
27
|
+
extra_rdoc_files:
|
28
|
+
- README.markdown
|
29
|
+
files:
|
30
|
+
- CHANGELOG.markdown
|
31
|
+
- README.markdown
|
32
|
+
- Rakefile
|
33
|
+
- VERSION.yml
|
34
|
+
- lib/rubygems/commands/open_command.rb
|
35
|
+
- lib/rubygems_plugin.rb
|
36
|
+
has_rdoc: true
|
37
|
+
homepage: http://github.com/jcf/haxor_gem
|
38
|
+
licenses: []
|
39
|
+
|
40
|
+
post_install_message:
|
41
|
+
rdoc_options: []
|
42
|
+
|
43
|
+
require_paths:
|
44
|
+
- lib
|
45
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
46
|
+
none: false
|
47
|
+
requirements:
|
48
|
+
- - ">="
|
49
|
+
- !ruby/object:Gem::Version
|
50
|
+
segments:
|
51
|
+
- 0
|
52
|
+
version: "0"
|
53
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
54
|
+
none: false
|
55
|
+
requirements:
|
56
|
+
- - ">="
|
57
|
+
- !ruby/object:Gem::Version
|
58
|
+
segments:
|
59
|
+
- 0
|
60
|
+
version: "0"
|
61
|
+
requirements: []
|
62
|
+
|
63
|
+
rubyforge_project: haxor_gem
|
64
|
+
rubygems_version: 1.3.7
|
65
|
+
signing_key:
|
66
|
+
specification_version: 3
|
67
|
+
summary: Haxor through gem
|
68
|
+
test_files: []
|
69
|
+
|