simple_calendar 2.4.1 → 2.4.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yml +43 -0
- data/Appraisals +11 -0
- data/CHANGELOG.md +4 -0
- data/Gemfile +3 -0
- data/README.md +56 -15
- data/Rakefile +1 -1
- data/app/views/simple_calendar/_week_calendar.html.erb +5 -5
- data/gemfiles/rails_6.gemfile +9 -0
- data/gemfiles/rails_6.gemfile.lock +197 -0
- data/gemfiles/rails_6_1.gemfile +9 -0
- data/gemfiles/rails_6_1.gemfile.lock +200 -0
- data/gemfiles/rails_master.gemfile +9 -0
- data/gemfiles/rails_master.gemfile.lock +205 -0
- data/lib/generators/simple_calendar/views_generator.rb +2 -2
- data/lib/simple_calendar/calendar.rb +54 -54
- data/lib/simple_calendar/month_calendar.rb +0 -1
- data/lib/simple_calendar/version.rb +1 -1
- data/lib/simple_calendar/view_helpers.rb +6 -6
- data/lib/simple_calendar/week_calendar.rb +1 -1
- data/simple_calendar.gemspec +12 -13
- data/spec/calendar_spec.rb +39 -39
- data/spec/calendars/month_calendar_spec.rb +8 -8
- data/spec/simple_calendar_spec.rb +4 -4
- data/spec/spec_helper.rb +53 -53
- data/spec/support/fake_event.rb +3 -3
- data/spec/support/view_context.rb +1 -1
- data/spec/views_generators_spec.rb +3 -3
- metadata +12 -4
- data/.travis.yml +0 -5
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: simple_calendar
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.4.
|
4
|
+
version: 2.4.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chris Oliver
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-03-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -46,11 +46,13 @@ extensions: []
|
|
46
46
|
extra_rdoc_files: []
|
47
47
|
files:
|
48
48
|
- ".github/FUNDING.yml"
|
49
|
+
- ".github/workflows/ci.yml"
|
49
50
|
- ".gitignore"
|
50
51
|
- ".rspec"
|
51
|
-
-
|
52
|
+
- Appraisals
|
52
53
|
- CHANGELOG.md
|
53
54
|
- Gemfile
|
55
|
+
- Gemfile.lock
|
54
56
|
- LICENSE.txt
|
55
57
|
- README.md
|
56
58
|
- Rakefile
|
@@ -60,6 +62,12 @@ files:
|
|
60
62
|
- app/views/simple_calendar/_week_calendar.html.erb
|
61
63
|
- bin/console
|
62
64
|
- bin/setup
|
65
|
+
- gemfiles/rails_6.gemfile
|
66
|
+
- gemfiles/rails_6.gemfile.lock
|
67
|
+
- gemfiles/rails_6_1.gemfile
|
68
|
+
- gemfiles/rails_6_1.gemfile.lock
|
69
|
+
- gemfiles/rails_master.gemfile
|
70
|
+
- gemfiles/rails_master.gemfile.lock
|
63
71
|
- lib/generators/simple_calendar/views_generator.rb
|
64
72
|
- lib/simple_calendar.rb
|
65
73
|
- lib/simple_calendar/calendar.rb
|
@@ -95,7 +103,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
95
103
|
- !ruby/object:Gem::Version
|
96
104
|
version: '0'
|
97
105
|
requirements: []
|
98
|
-
rubygems_version: 3.
|
106
|
+
rubygems_version: 3.2.3
|
99
107
|
signing_key:
|
100
108
|
specification_version: 4
|
101
109
|
summary: A simple Rails calendar
|