gemstalk 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 gemstalk.gemspec
4
+ gemspec
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require 'bundler/gem_tasks'
data/bin/gemstalk ADDED
@@ -0,0 +1,24 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ puts <<-EOF
4
+ =============================================================================
5
+ == ===================== ================ == ====================
6
+ = == =================== ==== =============== == ====================
7
+ = ==== =================== ==== === ========== == ====================
8
+ = ========= === = = ==== ======= === === == = === === = ==
9
+ = ======== = == ===== ====== === = == == === = == = =
10
+ = === == == = = ======= ==== ====== == == ==== == ======
11
+ = ==== == ===== = = == ==== === ==== == == === ===== ======
12
+ = == == = == = = == ==== === === = == == = == = == ======
13
+ == ==== === = = === ==== === == == = === === ======
14
+ =============================================================================
15
+
16
+ RubyGem Release Notification Service
17
+
18
+ Command Line Tool coming soon!
19
+
20
+ Till then, use the web interface:
21
+
22
+ http://GemStalker.com
23
+ EOF
24
+
data/gemstalk.gemspec ADDED
@@ -0,0 +1,20 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+ require "gemstalk/version"
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = "gemstalk"
7
+ s.version = Gemstalk::VERSION
8
+ s.authors = ["Mike Bailey"]
9
+ s.email = ["mike@bailey.net.au"]
10
+ s.homepage = ""
11
+ s.summary = %q{Command line tool for GemStalker service}
12
+ s.description = %q{Manage the list of Rubygems you want release notifications for.}
13
+
14
+ s.rubyforge_project = "gemstalk"
15
+
16
+ s.files = `git ls-files`.split("\n")
17
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
18
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
19
+ s.require_paths = ["lib"]
20
+ end
@@ -0,0 +1,3 @@
1
+ module Gemstalk
2
+ VERSION = "0.0.1"
3
+ end
data/lib/gemstalk.rb ADDED
@@ -0,0 +1,5 @@
1
+ require "gemstalk/version"
2
+
3
+ module Gemstalk
4
+ # Your code goes here...
5
+ end
metadata ADDED
@@ -0,0 +1,61 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: gemstalk
3
+ version: !ruby/object:Gem::Version
4
+ prerelease:
5
+ version: 0.0.1
6
+ platform: ruby
7
+ authors:
8
+ - Mike Bailey
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+
13
+ date: 2011-07-11 00:00:00 Z
14
+ dependencies: []
15
+
16
+ description: Manage the list of Rubygems you want release notifications for.
17
+ email:
18
+ - mike@bailey.net.au
19
+ executables:
20
+ - gemstalk
21
+ extensions: []
22
+
23
+ extra_rdoc_files: []
24
+
25
+ files:
26
+ - .gitignore
27
+ - Gemfile
28
+ - Rakefile
29
+ - bin/gemstalk
30
+ - gemstalk.gemspec
31
+ - lib/gemstalk.rb
32
+ - lib/gemstalk/version.rb
33
+ homepage: ""
34
+ licenses: []
35
+
36
+ post_install_message:
37
+ rdoc_options: []
38
+
39
+ require_paths:
40
+ - lib
41
+ required_ruby_version: !ruby/object:Gem::Requirement
42
+ none: false
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: "0"
47
+ required_rubygems_version: !ruby/object:Gem::Requirement
48
+ none: false
49
+ requirements:
50
+ - - ">="
51
+ - !ruby/object:Gem::Version
52
+ version: "0"
53
+ requirements: []
54
+
55
+ rubyforge_project: gemstalk
56
+ rubygems_version: 1.8.5
57
+ signing_key:
58
+ specification_version: 3
59
+ summary: Command line tool for GemStalker service
60
+ test_files: []
61
+