Skip to content

Commit 096081d

Browse files
committed
first commit
0 parents  commit 096081d

12 files changed

+127
-0
lines changed

MIT-LICENSE

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
Copyright (c) 2009 [name of plugin creator]
2+
3+
Permission is hereby granted, free of charge, to any person obtaining
4+
a copy of this software and associated documentation files (the
5+
"Software"), to deal in the Software without restriction, including
6+
without limitation the rights to use, copy, modify, merge, publish,
7+
distribute, sublicense, and/or sell copies of the Software, and to
8+
permit persons to whom the Software is furnished to do so, subject to
9+
the following conditions:
10+
11+
The above copyright notice and this permission notice shall be
12+
included in all copies or substantial portions of the Software.
13+
14+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Gitbuttons
2+
==========
3+
4+
Introduction goes here.
5+
6+
7+
Example
8+
=======
9+
10+
Example goes here.
11+
12+
13+
Copyright (c) 2009 [name of plugin creator], released under the MIT license

Rakefile

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
require 'rake'
2+
require 'rake/testtask'
3+
require 'rake/rdoctask'
4+
require 'rake/packagetask'
5+
require 'rake/gempackagetask'
6+
7+
PKG_FILES = FileList[
8+
'[a-zA-Z]*',
9+
'generators/**/*',
10+
'lib/**/*',
11+
'rails/**/*',
12+
'tasks/**/*',
13+
'test/**/*'
14+
]
15+
spec = Gem::Specification.new do |s|
16+
s.name = "gitbuttons"
17+
s.description = <<-EOF
18+
change the links to show up as github buttons
19+
EOF
20+
s.version = "0.0.1"
21+
s.author = "Aditya Naik"
22+
s.email = "[email protected]"
23+
s.homepage = "http://github.com/so1oonnet"
24+
s.platform = Gem::Platform::RUBY
25+
s.summary = "change the links to show up as github buttons"
26+
s.files = PKG_FILES.to_a
27+
s.require_path = "lib"
28+
s.has_rdoc = false
29+
s.extra_rdoc_files = ["README"]
30+
end
31+
desc 'Turn this plugin into a gem.'
32+
Rake::GemPackageTask.new(spec) do |pkg|
33+
pkg.gem_spec = spec
34+
end
35+
36+
desc 'Default: run unit tests.'
37+
task :default => :test
38+
39+
desc 'Test the gitbuttons plugin.'
40+
Rake::TestTask.new(:test) do |t|
41+
t.libs << 'lib'
42+
t.libs << 'test'
43+
t.pattern = 'test/**/*_test.rb'
44+
t.verbose = true
45+
end
46+
47+
desc 'Generate documentation for the gitbuttons plugin.'
48+
Rake::RDocTask.new(:rdoc) do |rdoc|
49+
rdoc.rdoc_dir = 'rdoc'
50+
rdoc.title = 'Gitbuttons'
51+
rdoc.options << '--line-numbers' << '--inline-source'
52+
rdoc.rdoc_files.include('README')
53+
rdoc.rdoc_files.include('lib/**/*.rb')
54+
end

install.rb

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Install hook code here

lib/gitbuttons.rb

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
require 'gitbuttons/core_ext'

lib/gitbuttons/core_ext.rb

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
module GitButtons
2+
module Helpers
3+
module UrlHelpers
4+
include ActionView::Helpers
5+
include ActionView::Helpers::UrlHelper
6+
7+
alias_method :link_to_original, :link_to unless method_defined?(:link_to_original)
8+
def link_to(name, options = {}, html_options = {})
9+
html_options[:git_button] ||= true
10+
if html_options[:git_button]
11+
html_options[:class] ||= ''
12+
html_options[:class] += ' minibutton'
13+
name = "<span>#{name}</span>"
14+
end
15+
html_options.delete :git_button
16+
link_to_original(name, options, html_options)
17+
end
18+
end
19+
end
20+
end

pkg/gitbuttons-0.0.1.gem

5.5 KB
Binary file not shown.

rails/init.rb

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
require 'gitbuttons'
2+
ActionView::Base.send(:include, GitButtons::Helpers::UrlHelpers)

tasks/gitbuttons_tasks.rake

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# desc "Explaining what the task does"
2+
# task :gitbuttons do
3+
# # Task goes here
4+
# end

test/gitbuttons_test.rb

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
require 'test_helper'
2+
3+
class GitbuttonsTest < ActiveSupport::TestCase
4+
# Replace this with your real tests.
5+
test "the truth" do
6+
assert true
7+
end
8+
end

test/test_helper.rb

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
require 'rubygems'
2+
require 'active_support'
3+
require 'active_support/test_case'

uninstall.rb

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Uninstall hook code here

0 commit comments

Comments
 (0)