michel 0.1.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 +7 -0
- data/.github/workflows/dynamic-security.yml +19 -0
- data/.github/workflows/main.yml +92 -0
- data/.gitignore +14 -0
- data/.rspec +3 -0
- data/.ruby-version +1 -0
- data/.standard.yml +5 -0
- data/CHANGELOG.md +5 -0
- data/CODE_OF_CONDUCT.md +6 -0
- data/CONTRIBUTING.md +38 -0
- data/Gemfile +17 -0
- data/Gemfile.lock +325 -0
- data/LICENSE +19 -0
- data/README.md +76 -0
- data/RELEASING.md +43 -0
- data/Rakefile +10 -0
- data/SECURITY.md +2 -0
- data/bin/console +11 -0
- data/bin/setup +8 -0
- data/lib/generators/michel/install/install_generator.rb +13 -0
- data/lib/generators/michel/install/templates/michel.rb +5 -0
- data/lib/generators/michel/view/templates/belongs_to_associations.erb +6 -0
- data/lib/generators/michel/view/templates/has_many_associations.erb +2 -0
- data/lib/generators/michel/view/templates/index_migration.erb +15 -0
- data/lib/generators/michel/view/templates/view.erb +95 -0
- data/lib/generators/michel/view/templates/view_migration.rb +8 -0
- data/lib/generators/michel/view/view_generator.rb +59 -0
- data/lib/michel/version.rb +5 -0
- data/lib/michel.rb +60 -0
- data/michel.gemspec +33 -0
- data/sig/michel.rbs +4 -0
- data/spec/example-app/.ruby-version +1 -0
- data/spec/example-app/Rakefile +6 -0
- data/spec/example-app/app/controllers/application_controller.rb +2 -0
- data/spec/example-app/app/controllers/concerns/.keep +0 -0
- data/spec/example-app/app/models/application_record.rb +3 -0
- data/spec/example-app/app/models/appointment.rb +3 -0
- data/spec/example-app/app/models/concerns/.keep +0 -0
- data/spec/example-app/app/models/physician.rb +4 -0
- data/spec/example-app/app/models/physician_availability.rb +3 -0
- data/spec/example-app/bin/bundle +109 -0
- data/spec/example-app/bin/dev +2 -0
- data/spec/example-app/bin/rails +4 -0
- data/spec/example-app/bin/rake +4 -0
- data/spec/example-app/bin/setup +34 -0
- data/spec/example-app/config/application.rb +44 -0
- data/spec/example-app/config/boot.rb +3 -0
- data/spec/example-app/config/credentials.yml.enc +1 -0
- data/spec/example-app/config/database.yml +85 -0
- data/spec/example-app/config/environment.rb +5 -0
- data/spec/example-app/config/environments/development.rb +49 -0
- data/spec/example-app/config/environments/production.rb +64 -0
- data/spec/example-app/config/environments/test.rb +42 -0
- data/spec/example-app/config/initializers/cors.rb +16 -0
- data/spec/example-app/config/initializers/filter_parameter_logging.rb +8 -0
- data/spec/example-app/config/initializers/inflections.rb +16 -0
- data/spec/example-app/config/locales/en.yml +31 -0
- data/spec/example-app/config/puma.rb +38 -0
- data/spec/example-app/config/routes.rb +10 -0
- data/spec/example-app/config.ru +6 -0
- data/spec/example-app/db/migrate/20250829205200_create_physicians.rb +8 -0
- data/spec/example-app/db/migrate/20250829205205_create_appointments.rb +10 -0
- data/spec/example-app/db/migrate/20250829205257_create_availabilities.rb +12 -0
- data/spec/example-app/db/schema.rb +42 -0
- data/spec/example-app/db/seeds.rb +9 -0
- data/spec/example-app/lib/tasks/.keep +0 -0
- data/spec/example-app/log/.keep +0 -0
- data/spec/example-app/public/robots.txt +1 -0
- data/spec/example-app/script/.keep +0 -0
- data/spec/example-app/tmp/.keep +0 -0
- data/spec/example-app/tmp/pids/.keep +0 -0
- data/spec/example-app/vendor/.keep +0 -0
- data/spec/generators/michel/install/install_generator_spec.rb +18 -0
- data/spec/generators/michel/view/view_generator_spec.rb +63 -0
- data/spec/lib/michel_spec.rb +60 -0
- data/spec/spec_helper.rb +27 -0
- metadata +158 -0
metadata
ADDED
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: michel
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Sally Hall
|
|
8
|
+
- Aji Slater
|
|
9
|
+
bindir: exe
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2026-01-28 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: activerecord
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ">="
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: 7.0.0
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ">="
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: 7.0.0
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: pg
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - "~>"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '1.0'
|
|
34
|
+
type: :runtime
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - "~>"
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '1.0'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: scenic
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - "~>"
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '1.9'
|
|
48
|
+
type: :runtime
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - "~>"
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '1.9'
|
|
55
|
+
email:
|
|
56
|
+
- sally@thoughtbot.com
|
|
57
|
+
- aji.slater@gmail.com
|
|
58
|
+
executables: []
|
|
59
|
+
extensions: []
|
|
60
|
+
extra_rdoc_files: []
|
|
61
|
+
files:
|
|
62
|
+
- ".github/workflows/dynamic-security.yml"
|
|
63
|
+
- ".github/workflows/main.yml"
|
|
64
|
+
- ".gitignore"
|
|
65
|
+
- ".rspec"
|
|
66
|
+
- ".ruby-version"
|
|
67
|
+
- ".standard.yml"
|
|
68
|
+
- CHANGELOG.md
|
|
69
|
+
- CODE_OF_CONDUCT.md
|
|
70
|
+
- CONTRIBUTING.md
|
|
71
|
+
- Gemfile
|
|
72
|
+
- Gemfile.lock
|
|
73
|
+
- LICENSE
|
|
74
|
+
- README.md
|
|
75
|
+
- RELEASING.md
|
|
76
|
+
- Rakefile
|
|
77
|
+
- SECURITY.md
|
|
78
|
+
- bin/console
|
|
79
|
+
- bin/setup
|
|
80
|
+
- lib/generators/michel/install/install_generator.rb
|
|
81
|
+
- lib/generators/michel/install/templates/michel.rb
|
|
82
|
+
- lib/generators/michel/view/templates/belongs_to_associations.erb
|
|
83
|
+
- lib/generators/michel/view/templates/has_many_associations.erb
|
|
84
|
+
- lib/generators/michel/view/templates/index_migration.erb
|
|
85
|
+
- lib/generators/michel/view/templates/view.erb
|
|
86
|
+
- lib/generators/michel/view/templates/view_migration.rb
|
|
87
|
+
- lib/generators/michel/view/view_generator.rb
|
|
88
|
+
- lib/michel.rb
|
|
89
|
+
- lib/michel/version.rb
|
|
90
|
+
- michel.gemspec
|
|
91
|
+
- sig/michel.rbs
|
|
92
|
+
- spec/example-app/.ruby-version
|
|
93
|
+
- spec/example-app/Rakefile
|
|
94
|
+
- spec/example-app/app/controllers/application_controller.rb
|
|
95
|
+
- spec/example-app/app/controllers/concerns/.keep
|
|
96
|
+
- spec/example-app/app/models/application_record.rb
|
|
97
|
+
- spec/example-app/app/models/appointment.rb
|
|
98
|
+
- spec/example-app/app/models/concerns/.keep
|
|
99
|
+
- spec/example-app/app/models/physician.rb
|
|
100
|
+
- spec/example-app/app/models/physician_availability.rb
|
|
101
|
+
- spec/example-app/bin/bundle
|
|
102
|
+
- spec/example-app/bin/dev
|
|
103
|
+
- spec/example-app/bin/rails
|
|
104
|
+
- spec/example-app/bin/rake
|
|
105
|
+
- spec/example-app/bin/setup
|
|
106
|
+
- spec/example-app/config.ru
|
|
107
|
+
- spec/example-app/config/application.rb
|
|
108
|
+
- spec/example-app/config/boot.rb
|
|
109
|
+
- spec/example-app/config/credentials.yml.enc
|
|
110
|
+
- spec/example-app/config/database.yml
|
|
111
|
+
- spec/example-app/config/environment.rb
|
|
112
|
+
- spec/example-app/config/environments/development.rb
|
|
113
|
+
- spec/example-app/config/environments/production.rb
|
|
114
|
+
- spec/example-app/config/environments/test.rb
|
|
115
|
+
- spec/example-app/config/initializers/cors.rb
|
|
116
|
+
- spec/example-app/config/initializers/filter_parameter_logging.rb
|
|
117
|
+
- spec/example-app/config/initializers/inflections.rb
|
|
118
|
+
- spec/example-app/config/locales/en.yml
|
|
119
|
+
- spec/example-app/config/puma.rb
|
|
120
|
+
- spec/example-app/config/routes.rb
|
|
121
|
+
- spec/example-app/db/migrate/20250829205200_create_physicians.rb
|
|
122
|
+
- spec/example-app/db/migrate/20250829205205_create_appointments.rb
|
|
123
|
+
- spec/example-app/db/migrate/20250829205257_create_availabilities.rb
|
|
124
|
+
- spec/example-app/db/schema.rb
|
|
125
|
+
- spec/example-app/db/seeds.rb
|
|
126
|
+
- spec/example-app/lib/tasks/.keep
|
|
127
|
+
- spec/example-app/log/.keep
|
|
128
|
+
- spec/example-app/public/robots.txt
|
|
129
|
+
- spec/example-app/script/.keep
|
|
130
|
+
- spec/example-app/tmp/.keep
|
|
131
|
+
- spec/example-app/tmp/pids/.keep
|
|
132
|
+
- spec/example-app/vendor/.keep
|
|
133
|
+
- spec/generators/michel/install/install_generator_spec.rb
|
|
134
|
+
- spec/generators/michel/view/view_generator_spec.rb
|
|
135
|
+
- spec/lib/michel_spec.rb
|
|
136
|
+
- spec/spec_helper.rb
|
|
137
|
+
homepage: https://github.com/thoughtbot/michel/
|
|
138
|
+
licenses: []
|
|
139
|
+
metadata:
|
|
140
|
+
homepage_uri: https://github.com/thoughtbot/michel/
|
|
141
|
+
rdoc_options: []
|
|
142
|
+
require_paths:
|
|
143
|
+
- lib
|
|
144
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
145
|
+
requirements:
|
|
146
|
+
- - ">="
|
|
147
|
+
- !ruby/object:Gem::Version
|
|
148
|
+
version: 3.0.0
|
|
149
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
150
|
+
requirements:
|
|
151
|
+
- - ">="
|
|
152
|
+
- !ruby/object:Gem::Version
|
|
153
|
+
version: '0'
|
|
154
|
+
requirements: []
|
|
155
|
+
rubygems_version: 3.6.2
|
|
156
|
+
specification_version: 4
|
|
157
|
+
summary: Generator to help with appointment scheduling
|
|
158
|
+
test_files: []
|