acts_as_label 0.2.0 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.specification +23 -10
- data/README.rdoc +63 -1
- data/VERSION +1 -1
- data/acts_as_label.gemspec +2 -2
- metadata +3 -3
data/.specification
CHANGED
@@ -1,12 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: acts_as_label
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
+
hash: 23
|
4
5
|
prerelease: false
|
5
6
|
segments:
|
6
7
|
- 0
|
7
|
-
-
|
8
|
-
-
|
9
|
-
version: 0.
|
8
|
+
- 2
|
9
|
+
- 0
|
10
|
+
version: 0.2.0
|
10
11
|
platform: ruby
|
11
12
|
authors:
|
12
13
|
- Coroutine
|
@@ -15,32 +16,40 @@ autorequire:
|
|
15
16
|
bindir: bin
|
16
17
|
cert_chain: []
|
17
18
|
|
18
|
-
date: 2010-07-
|
19
|
+
date: 2010-07-12 00:00:00 -05:00
|
19
20
|
default_executable:
|
20
21
|
dependencies:
|
21
22
|
- !ruby/object:Gem::Dependency
|
22
23
|
name: activerecord
|
23
24
|
prerelease: false
|
24
25
|
requirement: &id001 !ruby/object:Gem::Requirement
|
26
|
+
none: false
|
25
27
|
requirements:
|
26
28
|
- - ">="
|
27
29
|
- !ruby/object:Gem::Version
|
30
|
+
hash: 11
|
28
31
|
segments:
|
29
|
-
-
|
30
|
-
|
32
|
+
- 2
|
33
|
+
- 3
|
34
|
+
- 4
|
35
|
+
version: 2.3.4
|
31
36
|
type: :runtime
|
32
37
|
version_requirements: *id001
|
33
38
|
- !ruby/object:Gem::Dependency
|
34
39
|
name: activesupport
|
35
40
|
prerelease: false
|
36
41
|
requirement: &id002 !ruby/object:Gem::Requirement
|
42
|
+
none: false
|
37
43
|
requirements:
|
38
44
|
- - ">="
|
39
45
|
- !ruby/object:Gem::Version
|
46
|
+
hash: 11
|
40
47
|
segments:
|
41
|
-
-
|
42
|
-
|
43
|
-
|
48
|
+
- 2
|
49
|
+
- 3
|
50
|
+
- 4
|
51
|
+
version: 2.3.4
|
52
|
+
type: :development
|
44
53
|
version_requirements: *id002
|
45
54
|
description: 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.
|
46
55
|
email: jdugan@coroutine.com
|
@@ -74,23 +83,27 @@ rdoc_options:
|
|
74
83
|
require_paths:
|
75
84
|
- lib
|
76
85
|
required_ruby_version: !ruby/object:Gem::Requirement
|
86
|
+
none: false
|
77
87
|
requirements:
|
78
88
|
- - ">="
|
79
89
|
- !ruby/object:Gem::Version
|
90
|
+
hash: 3
|
80
91
|
segments:
|
81
92
|
- 0
|
82
93
|
version: "0"
|
83
94
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
95
|
+
none: false
|
84
96
|
requirements:
|
85
97
|
- - ">="
|
86
98
|
- !ruby/object:Gem::Version
|
99
|
+
hash: 3
|
87
100
|
segments:
|
88
101
|
- 0
|
89
102
|
version: "0"
|
90
103
|
requirements: []
|
91
104
|
|
92
105
|
rubyforge_project:
|
93
|
-
rubygems_version: 1.3.
|
106
|
+
rubygems_version: 1.3.7
|
94
107
|
signing_key:
|
95
108
|
specification_version: 3
|
96
109
|
summary: Gem version of acts_as_label Rails plugin.
|
data/README.rdoc
CHANGED
@@ -71,7 +71,69 @@ method +default+. This yields more expressive code.
|
|
71
71
|
|
72
72
|
|
73
73
|
|
74
|
+
== Helpful Links
|
75
|
+
|
76
|
+
* <b>Repository:</b> http://github.com/coroutine/acts_as_label
|
77
|
+
* <b>Gem:</b> http://rubygems.org/gems/acts_as_label
|
78
|
+
* <b>Authors:</b> http://coroutine.com
|
79
|
+
|
80
|
+
|
81
|
+
|
82
|
+
== Installation (Rails 3)
|
83
|
+
|
84
|
+
Install me from RubyGems.org by adding a gem dependency to your Gemfile. Bundler does
|
85
|
+
the rest.
|
86
|
+
|
87
|
+
gem "acts_as_label"
|
88
|
+
|
89
|
+
$ bundle install
|
90
|
+
|
91
|
+
|
92
|
+
|
93
|
+
== Installation (Rails 2)
|
94
|
+
|
95
|
+
Install me from RubyGems.org and add a gem dependency in the appropriate file.
|
96
|
+
|
97
|
+
$ gem install acts_as_label
|
98
|
+
|
99
|
+
Or install me as a plugin.
|
100
|
+
|
101
|
+
$ script/plugin install git://github.com/coroutine/acts_as_label.git
|
102
|
+
|
103
|
+
|
104
|
+
|
105
|
+
== Gemroll
|
106
|
+
|
107
|
+
Other gems by Coroutine include:
|
108
|
+
|
109
|
+
* {acts_as_current}[http://github.com/coroutine/acts_as_current]
|
110
|
+
* {acts_as_list_with_sti_support}[http://github.com/coroutine/acts_as_list_with_sti_support]
|
111
|
+
* {delayed_form_observer}[http://github.com/coroutine/delayed_form_observer]
|
112
|
+
* {kenny_dialoggins}[http://github.com/coroutine/kenny_dialoggins]
|
113
|
+
* {michael_hintbuble}[http://github.com/coroutine/michael_hintbuble]
|
114
|
+
* {tiny_navigation}[http://github.com/coroutine/tiny_navigation]
|
115
|
+
|
116
|
+
|
74
117
|
|
75
118
|
== License
|
76
119
|
|
77
|
-
Copyright (c) 2010 Coroutine LLC
|
120
|
+
Copyright (c) 2010 {Coroutine LLC}[http://coroutine.com].
|
121
|
+
|
122
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
123
|
+
a copy of this software and associated documentation files (the
|
124
|
+
"Software"), to deal in the Software without restriction, including
|
125
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
126
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
127
|
+
permit persons to whom the Software is furnished to do so, subject to
|
128
|
+
the following conditions:
|
129
|
+
|
130
|
+
The above copyright notice and this permission notice shall be
|
131
|
+
included in all copies or substantial portions of the Software.
|
132
|
+
|
133
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
134
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
135
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
136
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
137
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
138
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
139
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.
|
1
|
+
1.0.0
|
data/acts_as_label.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{acts_as_label}
|
8
|
-
s.version = "0.
|
8
|
+
s.version = "1.0.0"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Coroutine", "John Dugan"]
|
12
|
-
s.date = %q{2010-
|
12
|
+
s.date = %q{2010-10-10}
|
13
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
14
|
s.email = %q{jdugan@coroutine.com}
|
15
15
|
s.extra_rdoc_files = [
|
metadata
CHANGED
@@ -4,10 +4,10 @@ version: !ruby/object:Gem::Version
|
|
4
4
|
hash: 23
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
|
+
- 1
|
7
8
|
- 0
|
8
|
-
- 2
|
9
9
|
- 0
|
10
|
-
version: 0.
|
10
|
+
version: 1.0.0
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Coroutine
|
@@ -16,7 +16,7 @@ autorequire:
|
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
18
|
|
19
|
-
date: 2010-
|
19
|
+
date: 2010-10-10 00:00:00 -05:00
|
20
20
|
default_executable:
|
21
21
|
dependencies:
|
22
22
|
- !ruby/object:Gem::Dependency
|