rock 0.0.1 → 0.1.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.
Files changed (5) hide show
  1. data/lib/rock/rock.rb +6 -0
  2. data/lib/rock/version.rb +3 -0
  3. metadata +11 -21
  4. data/bin/rock +0 -12
  5. data/lib/rock.rb +0 -10
data/lib/rock/rock.rb ADDED
@@ -0,0 +1,6 @@
1
+
2
+ module rock
3
+ def self.do
4
+ 'got rock?'
5
+ end
6
+ end
@@ -0,0 +1,3 @@
1
+ module Lorem
2
+ VERSION = '0.1.0'
3
+ end
metadata CHANGED
@@ -1,13 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rock
3
3
  version: !ruby/object:Gem::Version
4
- hash: 29
5
- prerelease:
6
- segments:
7
- - 0
8
- - 0
9
- - 1
10
- version: 0.0.1
4
+ version: 0.1.0
11
5
  platform: ruby
12
6
  authors:
13
7
  - For Sure, Rad!
@@ -15,21 +9,23 @@ autorequire:
15
9
  bindir: bin
16
10
  cert_chain: []
17
11
 
18
- date: 2011-05-13 00:00:00 Z
12
+ date: 2011-05-12 00:00:00 -07:00
13
+ default_executable:
19
14
  dependencies: []
20
15
 
21
16
  description: rock (ruby on crack) is a ruby gem for startup creation
22
17
  email:
23
18
  - hi@forsurerad.com
24
- executables:
25
- - rock
19
+ executables: []
20
+
26
21
  extensions: []
27
22
 
28
23
  extra_rdoc_files: []
29
24
 
30
25
  files:
31
- - lib/rock.rb
32
- - bin/rock
26
+ - lib/rock/rock.rb
27
+ - lib/rock/version.rb
28
+ has_rdoc: true
33
29
  homepage: https://github.com/forsurerad/rock/
34
30
  licenses: []
35
31
 
@@ -39,27 +35,21 @@ rdoc_options: []
39
35
  require_paths:
40
36
  - lib
41
37
  required_ruby_version: !ruby/object:Gem::Requirement
42
- none: false
43
38
  requirements:
44
39
  - - ">="
45
40
  - !ruby/object:Gem::Version
46
- hash: 3
47
- segments:
48
- - 0
49
41
  version: "0"
42
+ version:
50
43
  required_rubygems_version: !ruby/object:Gem::Requirement
51
- none: false
52
44
  requirements:
53
45
  - - ">="
54
46
  - !ruby/object:Gem::Version
55
- hash: 3
56
- segments:
57
- - 0
58
47
  version: "0"
48
+ version:
59
49
  requirements: []
60
50
 
61
51
  rubyforge_project: rock
62
- rubygems_version: 1.8.2
52
+ rubygems_version: 1.3.5
63
53
  signing_key:
64
54
  specification_version: 3
65
55
  summary: rock (ruby on crack)
data/bin/rock DELETED
@@ -1,12 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- lib = File.expand_path(File.dirname(__FILE__) + '/../lib')
4
- $LOAD_PATH.unshift(lib) if File.directory?(lib) && !$LOAD_PATH.include?(lib)
5
-
6
- require 'rock'
7
-
8
- args = ARGV.dup
9
- ARGV.clear
10
- command = args.shift.strip rescue 'rock --help'
11
-
12
- Rock::Command.run(command, args)
data/lib/rock.rb DELETED
@@ -1,10 +0,0 @@
1
-
2
- # rock (ruby on crack)
3
-
4
- module Rock
5
- module Command
6
- def self.run(command, args)
7
- puts 'Placeholder, cranking Ruby like I smoked a fat rock'
8
- end
9
- end
10
- end