rack-footnotes 0.0.3 → 0.0.4
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 +1 -0
- data/Rakefile +2 -0
- data/lib/rack/footnotes.rb +1 -1
- data/rack-footnotes.gemspec +16 -19
- metadata +9 -6
data/.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
pkg
|
data/Rakefile
ADDED
data/lib/rack/footnotes.rb
CHANGED
data/rack-footnotes.gemspec
CHANGED
|
@@ -1,30 +1,27 @@
|
|
|
1
|
-
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
|
3
|
+
|
|
4
|
+
require 'rack/footnotes'
|
|
2
5
|
|
|
3
6
|
Gem::Specification.new do |s|
|
|
4
7
|
s.name = %q{rack-footnotes}
|
|
5
8
|
s.version = Rack::FootNotes::VERSION
|
|
6
|
-
|
|
7
|
-
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
9
|
+
s.platform = Gem::Platform::RUBY
|
|
8
10
|
s.authors = ["Ale Muñoz"]
|
|
9
|
-
s.
|
|
11
|
+
s.email = ["bomberstudios@gmail.com"]
|
|
12
|
+
s.homepage = "http://github.com/bomberstudios/rack-footnotes"
|
|
13
|
+
|
|
14
|
+
s.summary = %q{Rack middleware to insert text comments into pages}
|
|
10
15
|
s.description = %q{Rack middleware to insert text comments into pages. First created to be used with jlong's serve, but should work with pretty much every rack app}
|
|
11
|
-
|
|
12
|
-
s.
|
|
16
|
+
|
|
17
|
+
s.rubyforge_project = "rack-footnotes"
|
|
18
|
+
|
|
19
|
+
s.files = `git ls-files`.split("\n")
|
|
20
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
21
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
13
22
|
s.require_paths = ["lib"]
|
|
14
23
|
s.has_rdoc = false
|
|
15
|
-
s.rubygems_version = %q{1.3.6}
|
|
16
|
-
s.summary = %q{Rack middleware to insert text comments into pages}
|
|
17
24
|
|
|
18
|
-
|
|
19
|
-
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
20
|
-
s.specification_version = 3
|
|
25
|
+
s.add_dependency('rack', [">= 0"])
|
|
21
26
|
|
|
22
|
-
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
23
|
-
s.add_runtime_dependency(%q<rack>, [">= 0"])
|
|
24
|
-
else
|
|
25
|
-
s.add_dependency(%q<rack>, [">= 0"])
|
|
26
|
-
end
|
|
27
|
-
else
|
|
28
|
-
s.add_dependency(%q<rack>, [">= 0"])
|
|
29
|
-
end
|
|
30
27
|
end
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rack-footnotes
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 23
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 0.0.
|
|
9
|
+
- 4
|
|
10
|
+
version: 0.0.4
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- "Ale Mu\xC3\xB1oz"
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2010-12-
|
|
18
|
+
date: 2010-12-29 00:00:00 +01:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|
|
@@ -34,6 +34,7 @@ dependencies:
|
|
|
34
34
|
version_requirements: *id001
|
|
35
35
|
description: Rack middleware to insert text comments into pages. First created to be used with jlong's serve, but should work with pretty much every rack app
|
|
36
36
|
email:
|
|
37
|
+
- bomberstudios@gmail.com
|
|
37
38
|
executables: []
|
|
38
39
|
|
|
39
40
|
extensions: []
|
|
@@ -41,9 +42,11 @@ extensions: []
|
|
|
41
42
|
extra_rdoc_files: []
|
|
42
43
|
|
|
43
44
|
files:
|
|
45
|
+
- .gitignore
|
|
46
|
+
- README.md
|
|
47
|
+
- Rakefile
|
|
44
48
|
- lib/rack/footnotes.rb
|
|
45
49
|
- rack-footnotes.gemspec
|
|
46
|
-
- README.md
|
|
47
50
|
has_rdoc: false
|
|
48
51
|
homepage: http://github.com/bomberstudios/rack-footnotes
|
|
49
52
|
licenses: []
|
|
@@ -73,7 +76,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
73
76
|
version: "0"
|
|
74
77
|
requirements: []
|
|
75
78
|
|
|
76
|
-
rubyforge_project:
|
|
79
|
+
rubyforge_project: rack-footnotes
|
|
77
80
|
rubygems_version: 1.3.7
|
|
78
81
|
signing_key:
|
|
79
82
|
specification_version: 3
|