grimlock 0.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/LICENSE ADDED
File without changes
File without changes
File without changes
@@ -0,0 +1,21 @@
1
+ $LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
2
+
3
+ require 'rubygems' # not sure why...
4
+ require "grimlock"
5
+ require 'rake'
6
+
7
+
8
+ task :build do
9
+ system "gem build #{Grimlock::APP_NAME}.gemspec"
10
+ end
11
+
12
+ task :release => :build do
13
+ system "gem push #{Grimlock::APP_NAME}-#{Grimlock::VERSION}.gem"
14
+
15
+ puts "Just released #{Grimlock::APP_NAME} v#{Grimlock::VERSION}. #{Grimlock::APP_NAME} is always available in RubyGems! More information at http://hammackj.com/projects/grimlock/"
16
+ end
17
+
18
+ task :clean do
19
+ system "rm *.gem"
20
+ system "rm -rf coverage"
21
+ end
File without changes
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '/../lib'))
4
+
5
+ $stdout.sync = true
6
+ $stderr.sync = true
7
+
8
+ require 'rubygems'
9
+ require 'grimlock'
10
+
11
+ puts "Not implemented yet."
@@ -0,0 +1,25 @@
1
+ $:.unshift(File.join(File.dirname(__FILE__), 'lib'))
2
+
3
+ require 'rubygems'
4
+ require 'grimlock'
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = "#{Grimlock::APP_NAME}"
8
+ s.version = Grimlock::VERSION
9
+ s.homepage = "http://www.hammackj.com/projects/grimlock"
10
+ s.summary = "#{Grimlock::APP_NAME}"
11
+ s.description = "#{Grimlock::APP_NAME} is a experiment in implementing security tools in ruby"
12
+ s.license = "BSD"
13
+
14
+ s.author = "Jacob Hammack"
15
+ s.email = "jacob.hammack@hammackj.com"
16
+
17
+ s.files = Dir['[A-Z]*'] + Dir['lib/**/*'] + ['grimlock.gemspec']
18
+ s.bindir = "bin"
19
+ s.executables = "#{Grimlock::APP_NAME}"
20
+ s.require_paths = ["lib"]
21
+ s.has_rdoc = 'yard'
22
+ s.extra_rdoc_files = ["README.markdown", "LICENSE", "NEWS.markdown", "TODO.markdown"]
23
+
24
+ s.required_rubygems_version = ">= 1.6.0"
25
+ end
@@ -0,0 +1,4 @@
1
+ module Grimlock
2
+ APP_NAME = "grimlock"
3
+ VERSION = "0.0.0"
4
+ end
metadata ADDED
@@ -0,0 +1,66 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: grimlock
3
+ version: !ruby/object:Gem::Version
4
+ prerelease:
5
+ version: 0.0.0
6
+ platform: ruby
7
+ authors:
8
+ - Jacob Hammack
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+
13
+ date: 2011-07-09 00:00:00 -05:00
14
+ default_executable:
15
+ dependencies: []
16
+
17
+ description: grimlock is a experiment in implementing security tools in ruby
18
+ email: jacob.hammack@hammackj.com
19
+ executables:
20
+ - grimlock
21
+ extensions: []
22
+
23
+ extra_rdoc_files:
24
+ - README.markdown
25
+ - LICENSE
26
+ - NEWS.markdown
27
+ - TODO.markdown
28
+ files:
29
+ - LICENSE
30
+ - NEWS.markdown
31
+ - Rakefile
32
+ - README.markdown
33
+ - TODO.markdown
34
+ - lib/grimlock.rb
35
+ - grimlock.gemspec
36
+ - bin/grimlock
37
+ has_rdoc: true
38
+ homepage: http://www.hammackj.com/projects/grimlock
39
+ licenses:
40
+ - BSD
41
+ post_install_message:
42
+ rdoc_options: []
43
+
44
+ require_paths:
45
+ - lib
46
+ required_ruby_version: !ruby/object:Gem::Requirement
47
+ none: false
48
+ requirements:
49
+ - - ">="
50
+ - !ruby/object:Gem::Version
51
+ version: "0"
52
+ required_rubygems_version: !ruby/object:Gem::Requirement
53
+ none: false
54
+ requirements:
55
+ - - ">="
56
+ - !ruby/object:Gem::Version
57
+ version: 1.6.0
58
+ requirements: []
59
+
60
+ rubyforge_project:
61
+ rubygems_version: 1.6.2
62
+ signing_key:
63
+ specification_version: 3
64
+ summary: grimlock
65
+ test_files: []
66
+