acts-as-taggable-on 2.4.0.beta → 2.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/UPGRADING +14 -0
- data/acts-as-taggable-on.gemspec +4 -0
- data/lib/acts-as-taggable-on/version.rb +1 -1
- metadata +19 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fd04dd7817f5d465548706b2bb39ed8923bef126
|
4
|
+
data.tar.gz: 371cb9a485f0370ff51074edc74296219d6f1342
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f6dd2e281ec95af2bf1b3779a96522a99c81aa06d09b6e59337805c94060419c9860ef707d378029214b58fae76a9d23ac67d9b94a978c91385fffb2f605d64b
|
7
|
+
data.tar.gz: 843b679f0dd4212e1b814323a3b253d8f8d62942acd30d0f696a64301064c6bc5d6f4b65cfb33d300929b3c2f6f7910c844e98fa9b9fabbd47c5fc03f968cb44
|
data/UPGRADING
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
|
2
|
+
** acts-as-taggable-on version 2.4.0
|
3
|
+
|
4
|
+
Hello! This version is the first one released by me (@tilsammans),
|
5
|
+
a new maintainer on the project. It's been a while since the last
|
6
|
+
release and I am not 100% sure if any breaking changes have been
|
7
|
+
introduced. Please test your tagging functionality carefully.
|
8
|
+
|
9
|
+
From now on things should stabilize. Please check the project's
|
10
|
+
milestones and compatibilities stated in the readme. If you have
|
11
|
+
any questions, feel free to create an issue on github.
|
12
|
+
|
13
|
+
https://github.com/mbleigh/acts-as-taggable-on
|
14
|
+
|
data/acts-as-taggable-on.gemspec
CHANGED
@@ -10,6 +10,10 @@ Gem::Specification.new do |gem|
|
|
10
10
|
gem.email = %q{michael@intridea.com}
|
11
11
|
gem.homepage = ''
|
12
12
|
|
13
|
+
if File.exists?('UPGRADING')
|
14
|
+
gem.post_install_message = File.read("UPGRADING")
|
15
|
+
end
|
16
|
+
|
13
17
|
gem.add_runtime_dependency 'rails', '~> 3.0'
|
14
18
|
gem.add_development_dependency 'rspec', '~> 2.6'
|
15
19
|
gem.add_development_dependency 'ammeter', '~> 0.1.3'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: acts-as-taggable-on
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.4.0
|
4
|
+
version: 2.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michael Bleigh
|
@@ -138,6 +138,7 @@ files:
|
|
138
138
|
- MIT-LICENSE.md
|
139
139
|
- README.md
|
140
140
|
- Rakefile
|
141
|
+
- UPGRADING
|
141
142
|
- acts-as-taggable-on.gemspec
|
142
143
|
- lib/acts-as-taggable-on.rb
|
143
144
|
- lib/acts-as-taggable-on/version.rb
|
@@ -176,7 +177,21 @@ files:
|
|
176
177
|
homepage: ''
|
177
178
|
licenses: []
|
178
179
|
metadata: {}
|
179
|
-
post_install_message:
|
180
|
+
post_install_message: |2+
|
181
|
+
|
182
|
+
** acts-as-taggable-on version 2.4.0
|
183
|
+
|
184
|
+
Hello! This version is the first one released by me (@tilsammans),
|
185
|
+
a new maintainer on the project. It's been a while since the last
|
186
|
+
release and I am not 100% sure if any breaking changes have been
|
187
|
+
introduced. Please test your tagging functionality carefully.
|
188
|
+
|
189
|
+
From now on things should stabilize. Please check the project's
|
190
|
+
milestones and compatibilities stated in the readme. If you have
|
191
|
+
any questions, feel free to create an issue on github.
|
192
|
+
|
193
|
+
https://github.com/mbleigh/acts-as-taggable-on
|
194
|
+
|
180
195
|
rdoc_options: []
|
181
196
|
require_paths:
|
182
197
|
- lib
|
@@ -187,9 +202,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
187
202
|
version: '0'
|
188
203
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
189
204
|
requirements:
|
190
|
-
- - '
|
205
|
+
- - '>='
|
191
206
|
- !ruby/object:Gem::Version
|
192
|
-
version:
|
207
|
+
version: '0'
|
193
208
|
requirements: []
|
194
209
|
rubyforge_project:
|
195
210
|
rubygems_version: 2.0.0
|