gemcd 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 :rubygems
2
+
3
+ gemspec
data/gemcd.gemspec ADDED
@@ -0,0 +1,17 @@
1
+ lib = File.expand_path('../lib', __FILE__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+ require 'gemcd/version'
4
+
5
+ Gem::Specification.new do |gem|
6
+ gem.name = 'gemcd'
7
+ gem.date = '2012-10-22'
8
+ gem.version = GemCd::VERSION
9
+ gem.authors = ['Nick Barth']
10
+ gem.email = ['nick@nickbarth.ca']
11
+ gem.summary = 'A Ruby Gem for navigating your Gem directory.'
12
+ gem.description = 'GemCd helps you navigate your Gem directory by extending your gem commands with a built in `cd`.'
13
+ gem.homepage = 'https://github.com/nickbarth/GemCd'
14
+
15
+ gem.files = `git ls-files`.split($/)
16
+ gem.require_paths = ['lib']
17
+ end
@@ -0,0 +1,3 @@
1
+ class GemCd
2
+ VERSION = '0.0.1'
3
+ end
data/lib/gemcd.rb ADDED
@@ -0,0 +1,4 @@
1
+ require 'gemcd/version'
2
+
3
+ class GemCd
4
+ end
data/readme.md ADDED
@@ -0,0 +1,4 @@
1
+ # GemCd
2
+
3
+ ### License
4
+ WTFPL © 2012 Nick Barth
metadata ADDED
@@ -0,0 +1,51 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: gemcd
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Nick Barth
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-10-22 00:00:00.000000000 Z
13
+ dependencies: []
14
+ description: GemCd helps you navigate your Gem directory by extending your gem commands
15
+ with a built in `cd`.
16
+ email:
17
+ - nick@nickbarth.ca
18
+ executables: []
19
+ extensions: []
20
+ extra_rdoc_files: []
21
+ files:
22
+ - Gemfile
23
+ - gemcd.gemspec
24
+ - lib/gemcd.rb
25
+ - lib/gemcd/version.rb
26
+ - readme.md
27
+ homepage: https://github.com/nickbarth/GemCd
28
+ licenses: []
29
+ post_install_message:
30
+ rdoc_options: []
31
+ require_paths:
32
+ - lib
33
+ required_ruby_version: !ruby/object:Gem::Requirement
34
+ none: false
35
+ requirements:
36
+ - - ! '>='
37
+ - !ruby/object:Gem::Version
38
+ version: '0'
39
+ required_rubygems_version: !ruby/object:Gem::Requirement
40
+ none: false
41
+ requirements:
42
+ - - ! '>='
43
+ - !ruby/object:Gem::Version
44
+ version: '0'
45
+ requirements: []
46
+ rubyforge_project:
47
+ rubygems_version: 1.8.24
48
+ signing_key:
49
+ specification_version: 3
50
+ summary: A Ruby Gem for navigating your Gem directory.
51
+ test_files: []