cal_months 0.0.2 → 1.0.0
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.
- checksums.yaml +4 -4
- data/README.md +1 -0
- data/cal_months.gemspec +2 -2
- data/lib/generators/cal_months/install_generator.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 84bc1efb80242e379776bd8fc28b780c21d71509
|
|
4
|
+
data.tar.gz: 66137d466201f2a65188a2d82646b1ac3adfa86c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5bfe7905c51fb35d6c63c7533ccb885c5d5270df5d1adbef5b197e183c5dd997c8719d5d0a1cbd81ab1d680962f50eb31cc1c1fac44543e3086ab1bc2ab40579
|
|
7
|
+
data.tar.gz: 8f3849526d3c14919388d8d46a46e629ff9fce52c5d30699c1d71876a69dfadcce87df9c709d7890766cbed8ac8303b4c881767f8351fa33a04f0229f5630401
|
data/README.md
CHANGED
data/cal_months.gemspec
CHANGED
|
@@ -7,11 +7,11 @@ files.push('LICENSE')
|
|
|
7
7
|
|
|
8
8
|
Gem::Specification.new do |s|
|
|
9
9
|
s.name = 'cal_months'
|
|
10
|
-
s.version = '0.0
|
|
10
|
+
s.version = '1.0.0'
|
|
11
11
|
s.date = "#{Time.now.strftime("%Y-%m-%d")}"
|
|
12
12
|
s.homepage = 'https://github.com/jphager2/cal_months'
|
|
13
13
|
s.summary = 'icalendar integration'
|
|
14
|
-
s.description = 'A nice extension for quickly incorporating icalendar imports with default views'
|
|
14
|
+
s.description = 'A nice extension for quickly incorporating icalendar imports with default views (Rails 3)'
|
|
15
15
|
s.authors = ['jphager2']
|
|
16
16
|
s.email = 'jphager2@gmail.com'
|
|
17
17
|
s.files = files
|
|
@@ -25,7 +25,7 @@ module CalMonths
|
|
|
25
25
|
end
|
|
26
26
|
|
|
27
27
|
def add_helper
|
|
28
|
-
insert_into_file "app/helpers/application_helper.rb", "include CalMonthsHelper", after: "module ApplicationHelper
|
|
28
|
+
insert_into_file "app/helpers/application_helper.rb", "\n include CalMonthsHelper\n", after: "module ApplicationHelper"
|
|
29
29
|
end
|
|
30
30
|
|
|
31
31
|
def copy_views
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cal_months
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- jphager2
|
|
@@ -25,7 +25,7 @@ dependencies:
|
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: '2.2'
|
|
27
27
|
description: A nice extension for quickly incorporating icalendar imports with default
|
|
28
|
-
views
|
|
28
|
+
views (Rails 3)
|
|
29
29
|
email: jphager2@gmail.com
|
|
30
30
|
executables: []
|
|
31
31
|
extensions: []
|