acts_as_label 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/VERSION +1 -1
- data/acts_as_label.gemspec +53 -0
- metadata +3 -2
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.1
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = %q{acts_as_label}
|
|
8
|
+
s.version = "0.1.1"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["John Dugan"]
|
|
12
|
+
s.date = %q{2010-03-10}
|
|
13
|
+
s.description = %q{This acts_as extension implements a system label and a friendly label on a class and centralizes the logic for performing validations and accessing items by system label.}
|
|
14
|
+
s.email = %q{jdugan@coroutine.com}
|
|
15
|
+
s.extra_rdoc_files = [
|
|
16
|
+
"README.rdoc"
|
|
17
|
+
]
|
|
18
|
+
s.files = [
|
|
19
|
+
".gitignore",
|
|
20
|
+
"MIT-LICENSE",
|
|
21
|
+
"README.rdoc",
|
|
22
|
+
"Rakefile",
|
|
23
|
+
"VERSION",
|
|
24
|
+
"acts_as_label.gemspec",
|
|
25
|
+
"init.rb",
|
|
26
|
+
"lib/acts_as_label.rb",
|
|
27
|
+
"test/acts_as_label_test.rb",
|
|
28
|
+
"test/test_helper.rb"
|
|
29
|
+
]
|
|
30
|
+
s.homepage = %q{http://github.com/coroutine/acts_as_label}
|
|
31
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
32
|
+
s.require_paths = ["lib"]
|
|
33
|
+
s.rubygems_version = %q{1.3.6}
|
|
34
|
+
s.summary = %q{Gem version of acts_as_label Rails plugin.}
|
|
35
|
+
s.test_files = [
|
|
36
|
+
"test/acts_as_label_test.rb",
|
|
37
|
+
"test/test_helper.rb"
|
|
38
|
+
]
|
|
39
|
+
|
|
40
|
+
if s.respond_to? :specification_version then
|
|
41
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
42
|
+
s.specification_version = 3
|
|
43
|
+
|
|
44
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
45
|
+
s.add_runtime_dependency(%q<activesupport>, [">= 0"])
|
|
46
|
+
else
|
|
47
|
+
s.add_dependency(%q<activesupport>, [">= 0"])
|
|
48
|
+
end
|
|
49
|
+
else
|
|
50
|
+
s.add_dependency(%q<activesupport>, [">= 0"])
|
|
51
|
+
end
|
|
52
|
+
end
|
|
53
|
+
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 1
|
|
8
|
-
-
|
|
9
|
-
version: 0.1.
|
|
8
|
+
- 1
|
|
9
|
+
version: 0.1.1
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- John Dugan
|
|
@@ -43,6 +43,7 @@ files:
|
|
|
43
43
|
- README.rdoc
|
|
44
44
|
- Rakefile
|
|
45
45
|
- VERSION
|
|
46
|
+
- acts_as_label.gemspec
|
|
46
47
|
- init.rb
|
|
47
48
|
- lib/acts_as_label.rb
|
|
48
49
|
- test/acts_as_label_test.rb
|