annotation 0.1.0 → 0.1.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.
- data/README.txt +1 -1
- data/annotation.gemspec +3 -3
- data/lib/annotation.rb +2 -2
- data/test/annotation_test.rb +1 -1
- data/test/examples_test.rb +1 -1
- metadata +4 -4
data/README.txt
CHANGED
data/annotation.gemspec
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/ruby
|
|
2
2
|
|
|
3
3
|
###
|
|
4
|
-
### $Release: 0.1.
|
|
4
|
+
### $Release: 0.1.1 $
|
|
5
5
|
### $Copyright: copyright(c) 2010 kuwata-lab.com all rights reserved $
|
|
6
6
|
### $License: MIT-License $
|
|
7
7
|
###
|
|
@@ -15,9 +15,9 @@ spec = Gem::Specification.new do |s|
|
|
|
15
15
|
s.author = "makoto kuwata"
|
|
16
16
|
s.email = "kwa(at)kuwata-lab.com"
|
|
17
17
|
s.rubyforge_project = 'annotation'
|
|
18
|
-
s.version = "0.1.
|
|
18
|
+
s.version = "0.1.1"
|
|
19
19
|
s.platform = Gem::Platform::RUBY
|
|
20
|
-
s.homepage = "http://
|
|
20
|
+
s.homepage = "http://github.com/kwatch/annotation"
|
|
21
21
|
s.summary = "annotation library similar to Java or Python"
|
|
22
22
|
s.description = <<-'END'
|
|
23
23
|
Annotation.rb is a very small but pretty good library which introduces
|
data/lib/annotation.rb
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# -*- coding: utf-8 -*-
|
|
2
2
|
|
|
3
3
|
###
|
|
4
|
-
### $Release: 0.1.
|
|
4
|
+
### $Release: 0.1.1 $
|
|
5
5
|
### $Copyright: copyright(c) 2010 kuwata-lab.com all rights reserved $
|
|
6
6
|
### $License: MIT-License $
|
|
7
7
|
###
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
###
|
|
68
68
|
module Annotation
|
|
69
69
|
|
|
70
|
-
VERSION = "$Release: 0.1.
|
|
70
|
+
VERSION = "$Release: 0.1.1 $".split(' ')[1]
|
|
71
71
|
|
|
72
72
|
def annotation(*names)
|
|
73
73
|
self.class_eval do
|
data/test/annotation_test.rb
CHANGED
data/test/examples_test.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: annotation
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 25
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 0.1.
|
|
9
|
+
- 1
|
|
10
|
+
version: 0.1.1
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- makoto kuwata
|
|
@@ -37,7 +37,7 @@ files:
|
|
|
37
37
|
- setup.rb
|
|
38
38
|
- annotation.gemspec
|
|
39
39
|
has_rdoc: true
|
|
40
|
-
homepage: http://
|
|
40
|
+
homepage: http://github.com/kwatch/annotation
|
|
41
41
|
licenses: []
|
|
42
42
|
|
|
43
43
|
post_install_message:
|