radiant-event_calendar-extension 1.3.4 → 1.3.5
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +1 -0
- data/VERSION +1 -1
- data/config/locales/en.yml +5 -0
- data/event_calendar_extension.rb +1 -1
- data/radiant-event_calendar-extension.gemspec +4 -2
- metadata +5 -3
data/.gitignore
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
pkg/*
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.3.
|
1
|
+
1.3.5
|
data/event_calendar_extension.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
class EventCalendarExtension < Radiant::Extension
|
2
|
-
version "1.3.
|
2
|
+
version "1.3.5"
|
3
3
|
description "An event calendar extension that administers events locally or draws them from any ical or CalDAV publishers (Google Calendar, .Mac, Darwin Calendar Server, etc.)"
|
4
4
|
url "http://github.com/radiant/radiant-event_calendar-extension"
|
5
5
|
|
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{radiant-event_calendar-extension}
|
8
|
-
s.version = "1.3.
|
8
|
+
s.version = "1.3.5"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["spanner"]
|
@@ -16,7 +16,8 @@ Gem::Specification.new do |s|
|
|
16
16
|
"README.md"
|
17
17
|
]
|
18
18
|
s.files = [
|
19
|
-
".
|
19
|
+
".gitignore",
|
20
|
+
".gitmodules",
|
20
21
|
"README.md",
|
21
22
|
"Rakefile",
|
22
23
|
"VERSION",
|
@@ -64,6 +65,7 @@ Gem::Specification.new do |s|
|
|
64
65
|
"app/views/events/index.html.haml",
|
65
66
|
"app/views/events/index.ics.erb",
|
66
67
|
"app/views/events/index.rss.builder",
|
68
|
+
"config/locales/en.yml",
|
67
69
|
"config/routes.rb",
|
68
70
|
"db/migrate/001_create_calendar_and_events.rb",
|
69
71
|
"db/migrate/002_calendar_add_ical_url.rb",
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: radiant-event_calendar-extension
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 17
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 3
|
9
|
-
-
|
10
|
-
version: 1.3.
|
9
|
+
- 5
|
10
|
+
version: 1.3.5
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- spanner
|
@@ -99,6 +99,7 @@ extensions: []
|
|
99
99
|
extra_rdoc_files:
|
100
100
|
- README.md
|
101
101
|
files:
|
102
|
+
- .gitignore
|
102
103
|
- .gitmodules
|
103
104
|
- README.md
|
104
105
|
- Rakefile
|
@@ -147,6 +148,7 @@ files:
|
|
147
148
|
- app/views/events/index.html.haml
|
148
149
|
- app/views/events/index.ics.erb
|
149
150
|
- app/views/events/index.rss.builder
|
151
|
+
- config/locales/en.yml
|
150
152
|
- config/routes.rb
|
151
153
|
- db/migrate/001_create_calendar_and_events.rb
|
152
154
|
- db/migrate/002_calendar_add_ical_url.rb
|