bbcode 0.0.2 → 0.0.3
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/LICENSE +2 -2
- data/Manifest +2 -2
- data/README +1 -0
- data/Rakefile +2 -3
- data/TODO +1 -1
- data/bbcode.gemspec +3 -3
- metadata +4 -4
data/LICENSE
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
Copyright (c)
|
|
1
|
+
Copyright (c) 2009 [Eiffel Qiu]
|
|
2
2
|
|
|
3
3
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
4
4
|
a copy of this software and associated documentation files (the
|
|
@@ -17,4 +17,4 @@ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
17
17
|
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
18
18
|
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
19
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.
|
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/Manifest
CHANGED
data/README
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
A command line tools to auto format all the ruby source code.
|
data/Rakefile
CHANGED
|
@@ -6,8 +6,7 @@
|
|
|
6
6
|
p.summary = "A tool to beautify code."
|
|
7
7
|
p.url = "http://www.likenote.com"
|
|
8
8
|
p.email = "eiffelqiu@gmail.com"
|
|
9
|
-
p.version = "0.0.
|
|
10
|
-
|
|
11
|
-
#p.runtime_dependencies = ["string_tools >=1.4.0"]
|
|
9
|
+
p.version = "0.0.3"
|
|
10
|
+
p.need_tar_gz = false
|
|
12
11
|
end
|
|
13
12
|
|
data/bbcode.gemspec
CHANGED
|
@@ -2,15 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = %q{bbcode}
|
|
5
|
-
s.version = "0.0.
|
|
5
|
+
s.version = "0.0.3"
|
|
6
6
|
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
|
8
8
|
s.authors = ["eiffel qiu"]
|
|
9
|
-
s.date = %q{2009-04-
|
|
9
|
+
s.date = %q{2009-04-12}
|
|
10
10
|
s.description = %q{A tool to beautify code.}
|
|
11
11
|
s.email = %q{eiffelqiu@gmail.com}
|
|
12
12
|
s.extra_rdoc_files = ["lib/bbcode.rb", "LICENSE", "TODO", "README"]
|
|
13
|
-
s.files = ["lib/bbcode.rb", "
|
|
13
|
+
s.files = ["lib/bbcode.rb", "Manifest", "LICENSE", "Rakefile", "TODO", "README", "bbcode.gemspec"]
|
|
14
14
|
s.has_rdoc = true
|
|
15
15
|
s.homepage = %q{http://www.likenote.com}
|
|
16
16
|
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Bbcode", "--main", "README"]
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bbcode
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- eiffel qiu
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2009-04-
|
|
12
|
+
date: 2009-04-12 00:00:00 +08:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies: []
|
|
15
15
|
|
|
@@ -26,11 +26,11 @@ extra_rdoc_files:
|
|
|
26
26
|
- README
|
|
27
27
|
files:
|
|
28
28
|
- lib/bbcode.rb
|
|
29
|
+
- Manifest
|
|
29
30
|
- LICENSE
|
|
31
|
+
- Rakefile
|
|
30
32
|
- TODO
|
|
31
33
|
- README
|
|
32
|
-
- Manifest
|
|
33
|
-
- Rakefile
|
|
34
34
|
- bbcode.gemspec
|
|
35
35
|
has_rdoc: true
|
|
36
36
|
homepage: http://www.likenote.com
|