Skip to content

Commit d5d73de

Browse files
committedMay 27, 2008
removed a bunch of the newgem stuff because I dont really want it
1 parent 3d42968 commit d5d73de

23 files changed

+62
-2566
lines changed
 

‎History.txt

-4
This file was deleted.

‎License.txt ‎LICENSE

File renamed without changes.

‎Manifest.txt

+1-10
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,10 @@
11
bin/git-lh
2-
config/hoe.rb
3-
config/requirements.rb
4-
History.txt
5-
lib/git-lighthouse
62
lib/git-lighthouse/base.rb
73
lib/git-lighthouse/cli.rb
84
lib/git-lighthouse/lighthouse.rb
95
lib/git-lighthouse/version.rb
106
lib/git-lighthouse.rb
11-
License.txt
12-
Manifest.txt
13-
PostInstall.txt
14-
Rakefile
7+
LICENSE
158
README.txt
16-
setup.rb
179
spec/cli_spec.rb
1810
spec/spec_helper.rb
19-
TODO.txt

‎PostInstall.txt

Whitespace-only changes.

‎README.txt

+4
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,10 @@ Eventually, I will try to add this functionality, too:
7878

7979
*
8080

81+
== AUTHORS:
82+
83+
* Scott Chacon (schacon@gmail.com)
84+
8185
== LICENSE:
8286

8387
(The MIT License)

‎Rakefile

+37-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,37 @@
1-
require 'config/requirements'
2-
require 'config/hoe' # setup Hoe + all gem configuration
3-
4-
Dir['tasks/**/*.rake'].each { |rake| load rake }
1+
require 'rubygems'
2+
Gem::manage_gems
3+
require 'rake/gempackagetask'
4+
require 'spec/rake/spectask'
5+
6+
spec = eval(File.read('git-lighthouse.gemspec'))
7+
8+
Rake::GemPackageTask.new(spec) do |pkg|
9+
pkg.need_tar = true
10+
end
11+
12+
desc "Run all specs in spec directory"
13+
Spec::Rake::SpecTask.new(:spec) do |t|
14+
t.spec_files = FileList['spec/**/*_spec.rb']
15+
t.spec_opts = ['--color']
16+
end
17+
18+
namespace :spec do
19+
desc "Run rcov on the spec files"
20+
Spec::Rake::SpecTask.new(:coverage) do |t|
21+
t.spec_files = FileList['spec/**/*_spec.rb']
22+
t.spec_opts = ['--color']
23+
t.rcov = true
24+
t.rcov_opts = ['--exclude', 'spec\/spec,bin\/spec,examples,\/var\/lib\/gems,\/Library\/Ruby,\.autotest']
25+
end
26+
end
27+
28+
desc "Clean out the coverage and pkg directories"
29+
task :clean do
30+
rm_rf 'coverage'
31+
rm_rf 'pkg'
32+
rm Dir.glob('git-lighthouse*gem')
33+
end
34+
35+
task :default => "pkg/#{spec.name}-#{spec.version}.gem" do
36+
puts "generated latest version"
37+
end

‎bin/git-lh

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
#
77

88
require 'rubygems'
9-
#require 'git-lighthouse'
10-
require File.dirname(__FILE__) + '/../lib/git-lighthouse'
9+
require 'git-lighthouse'
10+
#require File.dirname(__FILE__) + '/../lib/git-lighthouse'
1111
GitLighthouse::CLI.execute

‎config/hoe.rb

-73
This file was deleted.

‎config/requirements.rb

-15
This file was deleted.

‎git-lighthouse.gemspec

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
Gem::Specification.new do |s|
2+
s.platform = Gem::Platform::RUBY
3+
s.name = "git-lighthouse"
4+
s.version = "0.1.0"
5+
s.date = "2008-05-27"
6+
s.author = "Scott Chacon"
7+
s.email = "schacon@gmail.com"
8+
s.summary = "Provides command line access to a Lighthouse ticketing system for a git based software package."
9+
s.files = ["bin/git-lh", "lib/git-lighthouse/base.rb", "lib/git-lighthouse/cli.rb", "lib/git-lighthouse/lighthouse.rb", "lib/git-lighthouse/version.rb", "lib/git-lighthouse.rb", "LICENSE", "README.txt", "spec/cli_spec.rb", "spec/spec_helper.rb"]
10+
11+
s.bindir = 'bin'
12+
s.executables << "git-lh"
13+
s.homepage = "http://github/schacon/git-lighthouse"
14+
15+
s.add_dependency('git', [">= 1.0.7"])
16+
17+
s.require_path = "lib"
18+
end

‎script/console

-10
This file was deleted.

‎script/destroy

-14
This file was deleted.

‎script/generate

-14
This file was deleted.

‎script/txt2html

-82
This file was deleted.

‎setup.rb

-1,585
This file was deleted.

‎tasks/deployment.rake

-34
This file was deleted.

‎tasks/environment.rake

-7
This file was deleted.

‎tasks/website.rake

-17
This file was deleted.

‎website/index.html

-141
This file was deleted.

‎website/index.txt

-83
This file was deleted.

‎website/javascripts/rounded_corners_lite.inc.js

-285
This file was deleted.

‎website/stylesheets/screen.css

-138
This file was deleted.

‎website/template.html.erb

-48
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.