deadlyicon-git-wiki-with-it 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.
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2008 [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.
@@ -0,0 +1,11 @@
1
+ Git-wiki-with-it
2
+ ================
3
+
4
+ Adds a simple wiki using Git as a database
5
+
6
+ Example
7
+ =======
8
+
9
+
10
+
11
+ Copyright (c) 2008 Jared Grippe, released under the MIT license
@@ -0,0 +1,23 @@
1
+ require 'rake'
2
+ require 'rake/testtask'
3
+ require 'rake/rdoctask'
4
+
5
+ desc 'Default: run unit tests.'
6
+ task :default => :test
7
+
8
+ desc 'Test the git_wiki_with_it plugin.'
9
+ Rake::TestTask.new(:test) do |t|
10
+ t.libs << 'lib'
11
+ t.libs << 'test'
12
+ t.pattern = 'test/**/*_test.rb'
13
+ t.verbose = true
14
+ end
15
+
16
+ desc 'Generate documentation for the git_wiki_with_it plugin.'
17
+ Rake::RDocTask.new(:rdoc) do |rdoc|
18
+ rdoc.rdoc_dir = 'rdoc'
19
+ rdoc.title = 'Git-wiki-with-it'
20
+ rdoc.options << '--line-numbers' << '--inline-source'
21
+ rdoc.rdoc_files.include('README')
22
+ rdoc.rdoc_files.include('lib/**/*.rb')
23
+ end
@@ -0,0 +1,29 @@
1
+ Gem::Specification.new do |s|
2
+ s.name = "git-wiki-with-it"
3
+ s.version = "0.0.1"
4
+ s.date = "2008-12-11"
5
+ s.summary = "Rails Gits A Wiki With It"
6
+ s.email = "jared@deadlyicon.com"
7
+ s.homepage = "http://github.com/deadlyicon/git-wiki-with-it"
8
+ s.description = "Git a wiki with it is a plugin for rails that add simple wikis implimented in git"
9
+ s.has_rdoc = true
10
+ s.authors = ["Jared Grippe"]
11
+ s.files = [
12
+ "MIT-LICENSE",
13
+ "README.textile",
14
+ "Rakefile",
15
+ "git_wiki_with_it.gemspec",
16
+ "init.rb",
17
+ "install.rb",
18
+ "lib/git_wiki_with_it.rb",
19
+ "tasks/git_wiki_with_it_tasks.rake",
20
+ "uninstall.rb"]
21
+ s.test_files = [
22
+ "test/git_wiki_with_it_test.rb",
23
+ "test/test_helper.rb"]
24
+ s.rdoc_options = ["--main", "README.txt"]
25
+ s.extra_rdoc_files = ["MIT-LICENSE", "README.textile"]
26
+ s.add_dependency("git", ["> 0.0.0"])
27
+ s.add_dependency("grit", ["> 0.0.0"])
28
+ s.add_dependency("mojombo-grit", ["> 0.0.0"])
29
+ end
data/init.rb ADDED
@@ -0,0 +1 @@
1
+ # Include hook code here
@@ -0,0 +1 @@
1
+ # Install hook code here
@@ -0,0 +1,5 @@
1
+ # Git-wiki-with-it
2
+ gem 'mojombo-grit'
3
+ require 'git'
4
+ require 'grit'
5
+ include Grit
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :git_wiki_with_it do
3
+ # # Task goes here
4
+ # end
@@ -0,0 +1,8 @@
1
+ require 'test_helper'
2
+
3
+ class Git-wiki-with-itTest < ActiveSupport::TestCase
4
+ # Replace this with your real tests.
5
+ test "the truth" do
6
+ assert true
7
+ end
8
+ end
@@ -0,0 +1,3 @@
1
+ require 'rubygems'
2
+ require 'active_support'
3
+ require 'active_support/test_case'
@@ -0,0 +1 @@
1
+ # Uninstall hook code here
metadata ADDED
@@ -0,0 +1,90 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: deadlyicon-git-wiki-with-it
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Jared Grippe
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2008-12-11 00:00:00 -08:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: git
17
+ version_requirement:
18
+ version_requirements: !ruby/object:Gem::Requirement
19
+ requirements:
20
+ - - ">"
21
+ - !ruby/object:Gem::Version
22
+ version: 0.0.0
23
+ version:
24
+ - !ruby/object:Gem::Dependency
25
+ name: grit
26
+ version_requirement:
27
+ version_requirements: !ruby/object:Gem::Requirement
28
+ requirements:
29
+ - - ">"
30
+ - !ruby/object:Gem::Version
31
+ version: 0.0.0
32
+ version:
33
+ - !ruby/object:Gem::Dependency
34
+ name: mojombo-grit
35
+ version_requirement:
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">"
39
+ - !ruby/object:Gem::Version
40
+ version: 0.0.0
41
+ version:
42
+ description: Git a wiki with it is a plugin for rails that add simple wikis implimented in git
43
+ email: jared@deadlyicon.com
44
+ executables: []
45
+
46
+ extensions: []
47
+
48
+ extra_rdoc_files:
49
+ - MIT-LICENSE
50
+ - README.textile
51
+ files:
52
+ - MIT-LICENSE
53
+ - README.textile
54
+ - Rakefile
55
+ - git_wiki_with_it.gemspec
56
+ - init.rb
57
+ - install.rb
58
+ - lib/git_wiki_with_it.rb
59
+ - tasks/git_wiki_with_it_tasks.rake
60
+ - uninstall.rb
61
+ has_rdoc: true
62
+ homepage: http://github.com/deadlyicon/git-wiki-with-it
63
+ post_install_message:
64
+ rdoc_options:
65
+ - --main
66
+ - README.txt
67
+ require_paths:
68
+ - lib
69
+ required_ruby_version: !ruby/object:Gem::Requirement
70
+ requirements:
71
+ - - ">="
72
+ - !ruby/object:Gem::Version
73
+ version: "0"
74
+ version:
75
+ required_rubygems_version: !ruby/object:Gem::Requirement
76
+ requirements:
77
+ - - ">="
78
+ - !ruby/object:Gem::Version
79
+ version: "0"
80
+ version:
81
+ requirements: []
82
+
83
+ rubyforge_project:
84
+ rubygems_version: 1.2.0
85
+ signing_key:
86
+ specification_version: 2
87
+ summary: Rails Gits A Wiki With It
88
+ test_files:
89
+ - test/git_wiki_with_it_test.rb
90
+ - test/test_helper.rb