public
Description: A sinatra app to log your GitHub commits with FogBugz
Clone URL: git://github.com/johnreilly/github-fogbugz.git
Gemified
francois (author)
Mon Jun 02 20:20:12 -0700 2008
commit  08e56e99cd727d506b08548048b5ddce5db663f2
tree    bcbab17ab1aaa5dd9de1d47a3d367476af928b51
parent  11d3b8922b26ec87280ea3283a31117c28fb57e8
...
 
1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
3
4
5
 
6
7
8
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
 
42
43
44
45
0
@@ -1,8 +1,45 @@
0
+require "rubygems"
0
 require "rake/testtask"
0
+require "rake/gempackagetask"
0
+
0
+GEM = "github-fogbugz"
0
+VERSION = "0.0.1"
0
+AUTHOR = ["John Reilly", "François Beausoleil"]
0
+EMAIL = ""
0
+HOMEPAGE = "http://github.com/johnreilly/github-fogbugz"
0
+SUMMARY = "A gem that acts as the gateway between GitHub and Fogbugz."
0
+
0
+spec = Gem::Specification.new do |s|
0
+ s.name = GEM
0
+ s.version = VERSION
0
+ s.platform = Gem::Platform::RUBY
0
+ s.has_rdoc = true
0
+ s.extra_rdoc_files = ["README", "LICENSE", "TODO"]
0
+ s.summary = SUMMARY
0
+ s.description = s.summary
0
+ s.author = AUTHOR
0
+ s.email = EMAIL
0
+ s.homepage = HOMEPAGE
0
+
0
+ # Uncomment this to add a dependency
0
+ s.add_dependency "activesupport", "~> 2.0"
0
+
0
+ s.require_path = "lib"
0
+ s.autorequire = GEM
0
+ s.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib,test}/**/*")
0
+end
0
+
0
+Rake::GemPackageTask.new(spec) do |pkg|
0
+ pkg.gem_spec = spec
0
+end
0
+
0
+task :install => [:package] do
0
+ sh %{sudo gem install pkg/#{GEM}-#{VERSION}}
0
+end
0
 
0
 Rake::TestTask.new do |t|
0
   t.libs << "test"
0
- t.test_files = FileList['test/*_test.rb']
0
+ t.test_files = FileList["test/*_test.rb"]
0
   t.verbose = true
0
 end
0
 

Comments

    No one has commented yet.