radiant-taggable_events-extension 2.0.0.rc1 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -2,6 +2,22 @@
2
2
 
3
3
  This little extension combines [taggable](https://github.com/spanner/radiant-taggable-extension/) and the [event_calendar](https://github.com/radiant/radiant-event_calendar-extension/) to add event tags, tag clouds and faceted search to the event calendar and (if installed) event map.
4
4
 
5
+ ## Compatibility
6
+
7
+ The 2.x releases are meant to be used with radiant v1. They may work with older releases if you install the dependencies first.
8
+
9
+ ## Installation
10
+
11
+ Install the gem:
12
+
13
+ sudo gem install radiant-taggable_events-extension
14
+
15
+ and add it to your application's Gemfile:
16
+
17
+ gem radiant-taggable_events-extension, '~>2.0.0'
18
+
19
+ You shouldn't need to specify extension load order since, as it happens, `taggable_events` is alphabetically later than `event_calendar` and `taggable`, which need to load before this does.
20
+
5
21
  ## Examples
6
22
 
7
23
  This extension is mostly invisible: it adds in small ways to the existing behaviour of the event_calendar controllers, so that for example the existing date-period faceting block that is displayed by:
@@ -1,5 +1,5 @@
1
1
  module RadiantTaggableEventsExtension
2
- VERSION = '2.0.0.rc1'
2
+ VERSION = '2.0.0'
3
3
  SUMMARY = %q{Adds event tags, tag clouds and faceted search to the event_calendar extension.}
4
4
  DESCRIPTION = %q{A tiny bit of glue to attach tags to event_calendar events and put tag clouds and faceted retrieval on event calendar pages.}
5
5
  URL = "http://spanner.org/radiant/taggable_event"
@@ -12,8 +12,8 @@ Gem::Specification.new do |s|
12
12
  s.summary = RadiantTaggableEventsExtension::SUMMARY
13
13
  s.description = RadiantTaggableEventsExtension::DESCRIPTION
14
14
 
15
- s.add_dependency "radiant-event_calendar-extension", "~> 1.4.3"
16
- s.add_dependency "radiant-taggable-extension", "~> 2.0.0.rc"
15
+ s.add_dependency "radiant-event_calendar-extension", "~> 1.5.0"
16
+ s.add_dependency "radiant-taggable-extension", "~> 2.0.0.rc4"
17
17
 
18
18
  ignores = if File.exist?('.gitignore')
19
19
  File.read('.gitignore').split("\n").inject([]) {|a,p| a + Dir[p] }
@@ -26,9 +26,9 @@ Gem::Specification.new do |s|
26
26
  s.require_paths = ["lib"]
27
27
 
28
28
  s.post_install_message = %{
29
- Add this to your radiant project with:
29
+ Add this to your Gemfile with:
30
30
 
31
- config.gem 'radiant-taggable_events-extension', :version => '~> #{RadiantTaggableEventsExtension::VERSION}'
31
+ gem 'radiant-taggable_events-extension', '~> #{RadiantTaggableEventsExtension::VERSION}'
32
32
 
33
33
  }
34
34
  end
metadata CHANGED
@@ -1,15 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: radiant-taggable_events-extension
3
3
  version: !ruby/object:Gem::Version
4
- hash: 15424087
5
- prerelease: 6
4
+ hash: 15
5
+ prerelease:
6
6
  segments:
7
7
  - 2
8
8
  - 0
9
9
  - 0
10
- - rc
11
- - 1
12
- version: 2.0.0.rc1
10
+ version: 2.0.0
13
11
  platform: ruby
14
12
  authors:
15
13
  - William Ross
@@ -17,7 +15,8 @@ autorequire:
17
15
  bindir: bin
18
16
  cert_chain: []
19
17
 
20
- date: 2011-07-05 00:00:00 Z
18
+ date: 2011-09-06 00:00:00 +01:00
19
+ default_executable:
21
20
  dependencies:
22
21
  - !ruby/object:Gem::Dependency
23
22
  name: radiant-event_calendar-extension
@@ -27,12 +26,12 @@ dependencies:
27
26
  requirements:
28
27
  - - ~>
29
28
  - !ruby/object:Gem::Version
30
- hash: 1
29
+ hash: 3
31
30
  segments:
32
31
  - 1
33
- - 4
34
- - 3
35
- version: 1.4.3
32
+ - 5
33
+ - 0
34
+ version: 1.5.0
36
35
  type: :runtime
37
36
  version_requirements: *id001
38
37
  - !ruby/object:Gem::Dependency
@@ -43,13 +42,14 @@ dependencies:
43
42
  requirements:
44
43
  - - ~>
45
44
  - !ruby/object:Gem::Version
46
- hash: 7712058
45
+ hash: 15424093
47
46
  segments:
48
47
  - 2
49
48
  - 0
50
49
  - 0
51
50
  - rc
52
- version: 2.0.0.rc
51
+ - 4
52
+ version: 2.0.0.rc4
53
53
  type: :runtime
54
54
  version_requirements: *id002
55
55
  description: A tiny bit of glue to attach tags to event_calendar events and put tag clouds and faceted retrieval on event calendar pages.
@@ -85,10 +85,11 @@ files:
85
85
  - spec/spec.opts
86
86
  - spec/spec_helper.rb
87
87
  - taggable_events_extension.rb
88
+ has_rdoc: true
88
89
  homepage: http://spanner.org/radiant/taggable_event
89
90
  licenses: []
90
91
 
91
- post_install_message: "\n Add this to your radiant project with:\n\n config.gem 'radiant-taggable_events-extension', :version => '~> 2.0.0.rc1'\n\n "
92
+ post_install_message: "\n Add this to your Gemfile with:\n\n gem 'radiant-taggable_events-extension', '~> 2.0.0'\n\n "
92
93
  rdoc_options: []
93
94
 
94
95
  require_paths:
@@ -105,18 +106,16 @@ required_ruby_version: !ruby/object:Gem::Requirement
105
106
  required_rubygems_version: !ruby/object:Gem::Requirement
106
107
  none: false
107
108
  requirements:
108
- - - ">"
109
+ - - ">="
109
110
  - !ruby/object:Gem::Version
110
- hash: 25
111
+ hash: 3
111
112
  segments:
112
- - 1
113
- - 3
114
- - 1
115
- version: 1.3.1
113
+ - 0
114
+ version: "0"
116
115
  requirements: []
117
116
 
118
117
  rubyforge_project:
119
- rubygems_version: 1.7.2
118
+ rubygems_version: 1.5.3
120
119
  signing_key:
121
120
  specification_version: 3
122
121
  summary: Adds event tags, tag clouds and faceted search to the event_calendar extension.