zzzzzz 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/.gitignore ADDED
@@ -0,0 +1,4 @@
1
+ *.gem
2
+ .bundle
3
+ Gemfile.lock
4
+ pkg/*
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "http://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in zzzzzz.gemspec
4
+ gemspec
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require 'bundler'
2
+ Bundler::GemHelper.install_tasks
data/lib/zzzzzz.rb ADDED
@@ -0,0 +1,3 @@
1
+ module Zzzzzz
2
+ # Your code goes here...
3
+ end
@@ -0,0 +1,3 @@
1
+ module Zzzzzz
2
+ VERSION = "0.0.1"
3
+ end
data/zzzzzz.gemspec ADDED
@@ -0,0 +1,21 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+ require "zzzzzz/version"
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = "zzzzzz"
7
+ s.version = Zzzzzz::VERSION
8
+ s.platform = Gem::Platform::RUBY
9
+ s.authors = ["Michael Noack"]
10
+ s.email = ["michael@noack.com.au"]
11
+ s.homepage = ""
12
+ s.summary = %q{Test gem to investigate how rubygems handles gems}
13
+ s.description = %q{Used to test various rubygems handlers such as does it use push date, gemspec date, etc.}
14
+
15
+ s.rubyforge_project = "zzzzzz"
16
+
17
+ s.files = `git ls-files`.split("\n")
18
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
19
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
20
+ s.require_paths = ["lib"]
21
+ end
metadata ADDED
@@ -0,0 +1,54 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: zzzzzz
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Michael Noack
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2011-05-28 00:00:00.000000000 +09:30
13
+ default_executable:
14
+ dependencies: []
15
+ description: Used to test various rubygems handlers such as does it use push date,
16
+ gemspec date, etc.
17
+ email:
18
+ - michael@noack.com.au
19
+ executables: []
20
+ extensions: []
21
+ extra_rdoc_files: []
22
+ files:
23
+ - .gitignore
24
+ - Gemfile
25
+ - Rakefile
26
+ - lib/zzzzzz.rb
27
+ - lib/zzzzzz/version.rb
28
+ - zzzzzz.gemspec
29
+ has_rdoc: true
30
+ homepage: ''
31
+ licenses: []
32
+ post_install_message:
33
+ rdoc_options: []
34
+ require_paths:
35
+ - lib
36
+ required_ruby_version: !ruby/object:Gem::Requirement
37
+ none: false
38
+ requirements:
39
+ - - ! '>='
40
+ - !ruby/object:Gem::Version
41
+ version: '0'
42
+ required_rubygems_version: !ruby/object:Gem::Requirement
43
+ none: false
44
+ requirements:
45
+ - - ! '>='
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ requirements: []
49
+ rubyforge_project: zzzzzz
50
+ rubygems_version: 1.6.2
51
+ signing_key:
52
+ specification_version: 3
53
+ summary: Test gem to investigate how rubygems handles gems
54
+ test_files: []