about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2023-10-27 23:51:23 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2023-10-27 23:51:23 -0400
commitd09db2d6d0727faba8e5078900f2fbd1e18ea49f (patch)
tree978edaa0c321477d3c04f515cd13da0051a5459f
parent75a7c7131f6c9a6d80d16055130609eb97f37dfd (diff)
downloadwittle-d09db2d6d0727faba8e5078900f2fbd1e18ea49f.tar.gz
wittle-d09db2d6d0727faba8e5078900f2fbd1e18ea49f.tar.bz2
wittle-d09db2d6d0727faba8e5078900f2fbd1e18ea49f.zip
it's an engine now!
-rw-r--r--.gitignore10
-rw-r--r--Gemfile16
-rw-r--r--Gemfile.lock196
-rw-r--r--Rakefile13
-rw-r--r--app/assets/config/wittle_manifest.js1
-rw-r--r--app/assets/images/wittle/.keep0
-rw-r--r--app/assets/stylesheets/wittle/application.css15
-rw-r--r--app/controllers/concerns/.keep0
-rw-r--r--app/controllers/wittle/application_controller.rb4
-rw-r--r--app/helpers/wittle/application_helper.rb4
-rw-r--r--app/jobs/wittle/application_job.rb4
-rw-r--r--app/mailers/wittle/application_mailer.rb6
-rw-r--r--app/models/concerns/.keep0
-rw-r--r--app/models/wittle/application_record.rb5
-rw-r--r--app/views/layouts/wittle/application.html.erb15
-rwxr-xr-xbin/rails14
-rw-r--r--config/routes.rb2
-rw-r--r--ext/wittle_generator/Makefile270
-rw-r--r--lib/tasks/wittle_tasks.rake4
-rw-r--r--lib/wittle.rb6
-rw-r--r--lib/wittle/engine.rb5
-rw-r--r--lib/wittle/version.rb3
-rw-r--r--test/controllers/.keep0
-rw-r--r--test/dummy/Rakefile6
-rw-r--r--test/dummy/app/assets/config/manifest.js3
-rw-r--r--test/dummy/app/assets/images/.keep0
-rw-r--r--test/dummy/app/assets/stylesheets/application.css15
-rw-r--r--test/dummy/app/channels/application_cable/channel.rb4
-rw-r--r--test/dummy/app/channels/application_cable/connection.rb4
-rw-r--r--test/dummy/app/controllers/application_controller.rb2
-rw-r--r--test/dummy/app/controllers/concerns/.keep0
-rw-r--r--test/dummy/app/helpers/application_helper.rb2
-rw-r--r--test/dummy/app/jobs/application_job.rb7
-rw-r--r--test/dummy/app/mailers/application_mailer.rb4
-rw-r--r--test/dummy/app/models/application_record.rb3
-rw-r--r--test/dummy/app/models/concerns/.keep0
-rw-r--r--test/dummy/app/views/layouts/application.html.erb15
-rw-r--r--test/dummy/app/views/layouts/mailer.html.erb13
-rw-r--r--test/dummy/app/views/layouts/mailer.text.erb1
-rwxr-xr-xtest/dummy/bin/rails4
-rwxr-xr-xtest/dummy/bin/rake4
-rwxr-xr-xtest/dummy/bin/setup33
-rw-r--r--test/dummy/config.ru6
-rw-r--r--test/dummy/config/application.rb29
-rw-r--r--test/dummy/config/boot.rb5
-rw-r--r--test/dummy/config/cable.yml10
-rw-r--r--test/dummy/config/database.yml25
-rw-r--r--test/dummy/config/environment.rb5
-rw-r--r--test/dummy/config/environments/development.rb76
-rw-r--r--test/dummy/config/environments/production.rb97
-rw-r--r--test/dummy/config/environments/test.rb64
-rw-r--r--test/dummy/config/initializers/assets.rb12
-rw-r--r--test/dummy/config/initializers/content_security_policy.rb25
-rw-r--r--test/dummy/config/initializers/filter_parameter_logging.rb8
-rw-r--r--test/dummy/config/initializers/inflections.rb16
-rw-r--r--test/dummy/config/initializers/permissions_policy.rb13
-rw-r--r--test/dummy/config/locales/en.yml31
-rw-r--r--test/dummy/config/puma.rb35
-rw-r--r--test/dummy/config/routes.rb3
-rw-r--r--test/dummy/config/storage.yml34
-rw-r--r--test/dummy/lib/assets/.keep0
-rw-r--r--test/dummy/public/404.html67
-rw-r--r--test/dummy/public/422.html67
-rw-r--r--test/dummy/public/500.html66
-rw-r--r--test/dummy/public/apple-touch-icon-precomposed.png0
-rw-r--r--test/dummy/public/apple-touch-icon.png0
-rw-r--r--test/dummy/public/favicon.ico0
-rw-r--r--test/fixtures/files/.keep0
-rw-r--r--test/helpers/.keep0
-rw-r--r--test/integration/.keep0
-rw-r--r--test/integration/navigation_test.rb7
-rw-r--r--test/mailers/.keep0
-rw-r--r--test/models/.keep0
-rw-r--r--test/test_helper.rb15
-rw-r--r--test/wittle_test.rb7
-rw-r--r--wittle_generator.gemspec12
76 files changed, 1172 insertions, 276 deletions
diff --git a/.gitignore b/.gitignore index eff03a5..162e77e 100644 --- a/.gitignore +++ b/.gitignore
@@ -2,3 +2,13 @@ ext/wittle_generator/build
2*.o 2*.o
3mkmf.log 3mkmf.log
4wittle_generator.bundle 4wittle_generator.bundle
5/.bundle/
6/doc/
7/log/*.log
8/pkg/
9/tmp/
10/test/dummy/db/*.sqlite3
11/test/dummy/db/*.sqlite3-*
12/test/dummy/log/*.log
13/test/dummy/storage/
14/test/dummy/tmp/
diff --git a/Gemfile b/Gemfile index 3b674ae..a4414ee 100644 --- a/Gemfile +++ b/Gemfile
@@ -1,3 +1,15 @@
1source 'https://rubygems.org' 1source "https://rubygems.org"
2git_source(:github) { |repo| "https://github.com/#{repo}.git" }
2 3
3gem 'rice' 4# Specify your gem's dependencies in wittle.gemspec.
5gemspec
6
7gem "puma"
8
9gem "sqlite3"
10
11gem "sprockets-rails"
12gem "rake-compiler"
13
14# Start debugger with binding.b [https://github.com/ruby/debug]
15# gem "debug", ">= 1.0.0"
diff --git a/Gemfile.lock b/Gemfile.lock index 16be444..88b074d 100644 --- a/Gemfile.lock +++ b/Gemfile.lock
@@ -1,13 +1,207 @@
1PATH
2 remote: .
3 specs:
4 wittle (0.1.0)
5 rails (>= 7.1.1)
6 rice
7
1GEM 8GEM
2 remote: https://rubygems.org/ 9 remote: https://rubygems.org/
3 specs: 10 specs:
11 actioncable (7.1.1)
12 actionpack (= 7.1.1)
13 activesupport (= 7.1.1)
14 nio4r (~> 2.0)
15 websocket-driver (>= 0.6.1)
16 zeitwerk (~> 2.6)
17 actionmailbox (7.1.1)
18 actionpack (= 7.1.1)
19 activejob (= 7.1.1)
20 activerecord (= 7.1.1)
21 activestorage (= 7.1.1)
22 activesupport (= 7.1.1)
23 mail (>= 2.7.1)
24 net-imap
25 net-pop
26 net-smtp
27 actionmailer (7.1.1)
28 actionpack (= 7.1.1)
29 actionview (= 7.1.1)
30 activejob (= 7.1.1)
31 activesupport (= 7.1.1)
32 mail (~> 2.5, >= 2.5.4)
33 net-imap
34 net-pop
35 net-smtp
36 rails-dom-testing (~> 2.2)
37 actionpack (7.1.1)
38 actionview (= 7.1.1)
39 activesupport (= 7.1.1)
40 nokogiri (>= 1.8.5)
41 rack (>= 2.2.4)
42 rack-session (>= 1.0.1)
43 rack-test (>= 0.6.3)
44 rails-dom-testing (~> 2.2)
45 rails-html-sanitizer (~> 1.6)
46 actiontext (7.1.1)
47 actionpack (= 7.1.1)
48 activerecord (= 7.1.1)
49 activestorage (= 7.1.1)
50 activesupport (= 7.1.1)
51 globalid (>= 0.6.0)
52 nokogiri (>= 1.8.5)
53 actionview (7.1.1)
54 activesupport (= 7.1.1)
55 builder (~> 3.1)
56 erubi (~> 1.11)
57 rails-dom-testing (~> 2.2)
58 rails-html-sanitizer (~> 1.6)
59 activejob (7.1.1)
60 activesupport (= 7.1.1)
61 globalid (>= 0.3.6)
62 activemodel (7.1.1)
63 activesupport (= 7.1.1)
64 activerecord (7.1.1)
65 activemodel (= 7.1.1)
66 activesupport (= 7.1.1)
67 timeout (>= 0.4.0)
68 activestorage (7.1.1)
69 actionpack (= 7.1.1)
70 activejob (= 7.1.1)
71 activerecord (= 7.1.1)
72 activesupport (= 7.1.1)
73 marcel (~> 1.0)
74 activesupport (7.1.1)
75 base64
76 bigdecimal
77 concurrent-ruby (~> 1.0, >= 1.0.2)
78 connection_pool (>= 2.2.5)
79 drb
80 i18n (>= 1.6, < 2)
81 minitest (>= 5.1)
82 mutex_m
83 tzinfo (~> 2.0)
84 base64 (0.1.1)
85 bigdecimal (3.1.4)
86 builder (3.2.4)
87 concurrent-ruby (1.2.2)
88 connection_pool (2.4.1)
89 crass (1.0.6)
90 date (3.3.3)
91 drb (2.1.1)
92 ruby2_keywords
93 erubi (1.12.0)
94 globalid (1.2.1)
95 activesupport (>= 6.1)
96 i18n (1.14.1)
97 concurrent-ruby (~> 1.0)
98 io-console (0.6.0)
99 irb (1.8.3)
100 rdoc
101 reline (>= 0.3.8)
102 loofah (2.21.4)
103 crass (~> 1.0.2)
104 nokogiri (>= 1.12.0)
105 mail (2.8.1)
106 mini_mime (>= 0.1.1)
107 net-imap
108 net-pop
109 net-smtp
110 marcel (1.0.2)
111 mini_mime (1.1.5)
112 minitest (5.20.0)
113 mutex_m (0.1.2)
114 net-imap (0.4.2)
115 date
116 net-protocol
117 net-pop (0.1.2)
118 net-protocol
119 net-protocol (0.2.1)
120 timeout
121 net-smtp (0.4.0)
122 net-protocol
123 nio4r (2.5.9)
124 nokogiri (1.15.4-x86_64-darwin)
125 racc (~> 1.4)
126 psych (5.1.1.1)
127 stringio
128 puma (6.4.0)
129 nio4r (~> 2.0)
130 racc (1.7.1)
131 rack (3.0.8)
132 rack-session (2.0.0)
133 rack (>= 3.0.0)
134 rack-test (2.1.0)
135 rack (>= 1.3)
136 rackup (2.1.0)
137 rack (>= 3)
138 webrick (~> 1.8)
139 rails (7.1.1)
140 actioncable (= 7.1.1)
141 actionmailbox (= 7.1.1)
142 actionmailer (= 7.1.1)
143 actionpack (= 7.1.1)
144 actiontext (= 7.1.1)
145 actionview (= 7.1.1)
146 activejob (= 7.1.1)
147 activemodel (= 7.1.1)
148 activerecord (= 7.1.1)
149 activestorage (= 7.1.1)
150 activesupport (= 7.1.1)
151 bundler (>= 1.15.0)
152 railties (= 7.1.1)
153 rails-dom-testing (2.2.0)
154 activesupport (>= 5.0.0)
155 minitest
156 nokogiri (>= 1.6)
157 rails-html-sanitizer (1.6.0)
158 loofah (~> 2.21)
159 nokogiri (~> 1.14)
160 railties (7.1.1)
161 actionpack (= 7.1.1)
162 activesupport (= 7.1.1)
163 irb
164 rackup (>= 1.0.0)
165 rake (>= 12.2)
166 thor (~> 1.0, >= 1.2.2)
167 zeitwerk (~> 2.6)
168 rake (13.1.0)
169 rake-compiler (1.2.5)
170 rake
171 rdoc (6.5.0)
172 psych (>= 4.0.0)
173 reline (0.3.9)
174 io-console (~> 0.5)
4 rice (4.1.0) 175 rice (4.1.0)
176 ruby2_keywords (0.0.5)
177 sprockets (4.2.1)
178 concurrent-ruby (~> 1.0)
179 rack (>= 2.2.4, < 4)
180 sprockets-rails (3.4.2)
181 actionpack (>= 5.2)
182 activesupport (>= 5.2)
183 sprockets (>= 3.0.0)
184 sqlite3 (1.6.7-x86_64-darwin)
185 stringio (3.0.8)
186 thor (1.3.0)
187 timeout (0.4.0)
188 tzinfo (2.0.6)
189 concurrent-ruby (~> 1.0)
190 webrick (1.8.1)
191 websocket-driver (0.7.6)
192 websocket-extensions (>= 0.1.0)
193 websocket-extensions (0.1.5)
194 zeitwerk (2.6.12)
5 195
6PLATFORMS 196PLATFORMS
7 x86_64-darwin-22 197 x86_64-darwin-22
8 198
9DEPENDENCIES 199DEPENDENCIES
10 rice 200 puma
201 rake-compiler
202 sprockets-rails
203 sqlite3
204 wittle!
11 205
12BUNDLED WITH 206BUNDLED WITH
13 2.4.10 207 2.4.10
diff --git a/Rakefile b/Rakefile new file mode 100644 index 0000000..d17bf78 --- /dev/null +++ b/Rakefile
@@ -0,0 +1,13 @@
1require "bundler/setup"
2require "rake/extensiontask"
3
4APP_RAKEFILE = File.expand_path("test/dummy/Rakefile", __dir__)
5load "rails/tasks/engine.rake"
6
7load "rails/tasks/statistics.rake"
8
9require "bundler/gem_tasks"
10
11Rake::ExtensionTask.new "wittle_generator" do |ext|
12 ext.lib_dir = "lib/wittle_generator"
13end
diff --git a/app/assets/config/wittle_manifest.js b/app/assets/config/wittle_manifest.js new file mode 100644 index 0000000..af556d6 --- /dev/null +++ b/app/assets/config/wittle_manifest.js
@@ -0,0 +1 @@
//= link_directory ../stylesheets/wittle .css
diff --git a/app/assets/images/wittle/.keep b/app/assets/images/wittle/.keep new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/app/assets/images/wittle/.keep
diff --git a/app/assets/stylesheets/wittle/application.css b/app/assets/stylesheets/wittle/application.css new file mode 100644 index 0000000..0ebd7fe --- /dev/null +++ b/app/assets/stylesheets/wittle/application.css
@@ -0,0 +1,15 @@
1/*
2 * This is a manifest file that'll be compiled into application.css, which will include all the files
3 * listed below.
4 *
5 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6 * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
7 *
8 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9 * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
10 * files in this directory. Styles in this file should be added after the last require_* statement.
11 * It is generally better to create a new file per style scope.
12 *
13 *= require_tree .
14 *= require_self
15 */
diff --git a/app/controllers/concerns/.keep b/app/controllers/concerns/.keep new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/app/controllers/concerns/.keep
diff --git a/app/controllers/wittle/application_controller.rb b/app/controllers/wittle/application_controller.rb new file mode 100644 index 0000000..252a28e --- /dev/null +++ b/app/controllers/wittle/application_controller.rb
@@ -0,0 +1,4 @@
1module Wittle
2 class ApplicationController < ActionController::Base
3 end
4end
diff --git a/app/helpers/wittle/application_helper.rb b/app/helpers/wittle/application_helper.rb new file mode 100644 index 0000000..8fcb2c9 --- /dev/null +++ b/app/helpers/wittle/application_helper.rb
@@ -0,0 +1,4 @@
1module Wittle
2 module ApplicationHelper
3 end
4end
diff --git a/app/jobs/wittle/application_job.rb b/app/jobs/wittle/application_job.rb new file mode 100644 index 0000000..b0ab02e --- /dev/null +++ b/app/jobs/wittle/application_job.rb
@@ -0,0 +1,4 @@
1module Wittle
2 class ApplicationJob < ActiveJob::Base
3 end
4end
diff --git a/app/mailers/wittle/application_mailer.rb b/app/mailers/wittle/application_mailer.rb new file mode 100644 index 0000000..5a563c4 --- /dev/null +++ b/app/mailers/wittle/application_mailer.rb
@@ -0,0 +1,6 @@
1module Wittle
2 class ApplicationMailer < ActionMailer::Base
3 default from: "from@example.com"
4 layout "mailer"
5 end
6end
diff --git a/app/models/concerns/.keep b/app/models/concerns/.keep new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/app/models/concerns/.keep
diff --git a/app/models/wittle/application_record.rb b/app/models/wittle/application_record.rb new file mode 100644 index 0000000..be1dfe5 --- /dev/null +++ b/app/models/wittle/application_record.rb
@@ -0,0 +1,5 @@
1module Wittle
2 class ApplicationRecord < ActiveRecord::Base
3 self.abstract_class = true
4 end
5end
diff --git a/app/views/layouts/wittle/application.html.erb b/app/views/layouts/wittle/application.html.erb new file mode 100644 index 0000000..ba450d1 --- /dev/null +++ b/app/views/layouts/wittle/application.html.erb
@@ -0,0 +1,15 @@
1<!DOCTYPE html>
2<html>
3<head>
4 <title>Wittle</title>
5 <%= csrf_meta_tags %>
6 <%= csp_meta_tag %>
7
8 <%= stylesheet_link_tag "wittle/application", media: "all" %>
9</head>
10<body>
11
12<%= yield %>
13
14</body>
15</html>
diff --git a/bin/rails b/bin/rails new file mode 100755 index 0000000..dc13199 --- /dev/null +++ b/bin/rails
@@ -0,0 +1,14 @@
1#!/usr/bin/env ruby
2# This command will automatically be run when you run "rails" with Rails gems
3# installed from the root of your application.
4
5ENGINE_ROOT = File.expand_path("..", __dir__)
6ENGINE_PATH = File.expand_path("../lib/wittle/engine", __dir__)
7APP_PATH = File.expand_path("../test/dummy/config/application", __dir__)
8
9# Set up gems listed in the Gemfile.
10ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__)
11require "bundler/setup" if File.exist?(ENV["BUNDLE_GEMFILE"])
12
13require "rails/all"
14require "rails/engine/commands"
diff --git a/config/routes.rb b/config/routes.rb new file mode 100644 index 0000000..bc08755 --- /dev/null +++ b/config/routes.rb
@@ -0,0 +1,2 @@
1Wittle::Engine.routes.draw do
2end
diff --git a/ext/wittle_generator/Makefile b/ext/wittle_generator/Makefile deleted file mode 100644 index 2df1195..0000000 --- a/ext/wittle_generator/Makefile +++ /dev/null
@@ -1,270 +0,0 @@
1
2SHELL = /bin/sh
3
4# V=0 quiet, V=1 verbose. other values don't work.
5V = 0
6V0 = $(V:0=)
7Q1 = $(V:1=)
8Q = $(Q1:0=@)
9ECHO1 = $(V:1=@ :)
10ECHO = $(ECHO1:0=@ echo)
11NULLCMD = :
12
13#### Start of system configuration section. ####
14
15srcdir = .
16topdir = /Users/hatkirby/.rvm/rubies/ruby-3.2.2/include/ruby-3.2.0
17hdrdir = $(topdir)
18arch_hdrdir = /Users/hatkirby/.rvm/rubies/ruby-3.2.2/include/ruby-3.2.0/x86_64-darwin22
19PATH_SEPARATOR = :
20VPATH = $(srcdir):$(arch_hdrdir)/ruby:$(hdrdir)/ruby
21prefix = $(DESTDIR)/Users/hatkirby/.rvm/rubies/ruby-3.2.2
22rubysitearchprefix = $(rubylibprefix)/$(sitearch)
23rubyarchprefix = $(rubylibprefix)/$(arch)
24rubylibprefix = $(libdir)/$(RUBY_BASE_NAME)
25exec_prefix = $(prefix)
26vendorarchhdrdir = $(vendorhdrdir)/$(sitearch)
27sitearchhdrdir = $(sitehdrdir)/$(sitearch)
28rubyarchhdrdir = $(rubyhdrdir)/$(arch)
29vendorhdrdir = $(rubyhdrdir)/vendor_ruby
30sitehdrdir = $(rubyhdrdir)/site_ruby
31rubyhdrdir = $(includedir)/$(RUBY_VERSION_NAME)
32vendorarchdir = $(vendorlibdir)/$(sitearch)
33vendorlibdir = $(vendordir)/$(ruby_version)
34vendordir = $(rubylibprefix)/vendor_ruby
35sitearchdir = $(sitelibdir)/$(sitearch)
36sitelibdir = $(sitedir)/$(ruby_version)
37sitedir = $(rubylibprefix)/site_ruby
38rubyarchdir = $(rubylibdir)/$(arch)
39rubylibdir = $(rubylibprefix)/$(ruby_version)
40sitearchincludedir = $(includedir)/$(sitearch)
41archincludedir = $(includedir)/$(arch)
42sitearchlibdir = $(libdir)/$(sitearch)
43archlibdir = $(libdir)/$(arch)
44ridir = $(datarootdir)/$(RI_BASE_NAME)
45mandir = $(datarootdir)/man
46localedir = $(datarootdir)/locale
47libdir = $(exec_prefix)/lib
48psdir = $(docdir)
49pdfdir = $(docdir)
50dvidir = $(docdir)
51htmldir = $(docdir)
52infodir = $(datarootdir)/info
53docdir = $(datarootdir)/doc/$(PACKAGE)
54oldincludedir = $(DESTDIR)/usr/include
55includedir = $(SDKROOT)$(prefix)/include
56runstatedir = $(localstatedir)/run
57localstatedir = $(prefix)/var
58sharedstatedir = $(prefix)/com
59sysconfdir = $(prefix)/etc
60datadir = $(datarootdir)
61datarootdir = $(prefix)/share
62libexecdir = $(exec_prefix)/libexec
63sbindir = $(exec_prefix)/sbin
64bindir = $(exec_prefix)/bin
65archdir = $(rubyarchdir)
66
67
68CC_WRAPPER =
69CC = gcc
70CXX = g++
71LIBRUBY = $(LIBRUBY_SO)
72LIBRUBY_A = lib$(RUBY_SO_NAME)-static.a
73LIBRUBYARG_SHARED = -l$(RUBY_SO_NAME)
74LIBRUBYARG_STATIC = -l$(RUBY_SO_NAME)-static -framework CoreFoundation $(MAINLIBS)
75empty =
76OUTFLAG = -o $(empty)
77COUTFLAG = -o $(empty)
78CSRCFLAG = $(empty)
79
80RUBY_EXTCONF_H =
81cflags = -fdeclspec $(optflags) $(debugflags) $(warnflags)
82cxxflags =
83optflags = -O3 -fno-fast-math
84debugflags = -ggdb3
85warnflags = -Wall -Wextra -Wextra-tokens -Wdeprecated-declarations -Wdivision-by-zero -Wdiv-by-zero -Wimplicit-function-declaration -Wimplicit-int -Wmisleading-indentation -Wpointer-arith -Wshorten-64-to-32 -Wwrite-strings -Wold-style-definition -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wunused-variable -Wundef
86cppflags =
87CCDLFLAGS = -fno-common
88CFLAGS = $(CCDLFLAGS) -O3 -I/usr/local/opt/libyaml/include -I/usr/local/opt/libksba/include -I/usr/local/opt/readline/include -I/usr/local/opt/zlib/include -I/usr/local/opt/openssl@1.1/include $(cflags) -fno-common -pipe $(ARCH_FLAG)
89INCFLAGS = -I. -I$(arch_hdrdir) -I$(hdrdir)/ruby/backward -I$(hdrdir) -I$(srcdir) -I/Users/hatkirby/.rvm/gems/ruby-3.2.2/gems/rice-4.1.0/include
90DEFS =
91CPPFLAGS = -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -D_DARWIN_UNLIMITED_SELECT -D_REENTRANT $(DEFS) $(cppflags)
92CXXFLAGS = $(CCDLFLAGS) -fdeclspec -std=c++17 $(ARCH_FLAG)
93ldflags = -L. -L/usr/local/opt/libyaml/lib -L/usr/local/opt/libksba/lib -L/usr/local/opt/readline/lib -L/usr/local/opt/zlib/lib -L/usr/local/opt/openssl@1.1/lib -fstack-protector-strong
94dldflags = -L/usr/local/opt/libyaml/lib -L/usr/local/opt/libksba/lib -L/usr/local/opt/readline/lib -L/usr/local/opt/zlib/lib -L/usr/local/opt/openssl@1.1/lib -Wl,-multiply_defined,suppress $(LIBRUBYARG_SHARED)
95ARCH_FLAG =
96DLDFLAGS = $(ldflags) $(dldflags) $(ARCH_FLAG)
97LDSHARED = $(CC) -dynamic -bundle
98LDSHAREDXX = $(CXX) -dynamic -bundle
99AR = ar
100EXEEXT =
101
102RUBY_INSTALL_NAME = $(RUBY_BASE_NAME)
103RUBY_SO_NAME = ruby.3.2
104RUBYW_INSTALL_NAME =
105RUBY_VERSION_NAME = $(RUBY_BASE_NAME)-$(ruby_version)
106RUBYW_BASE_NAME = rubyw
107RUBY_BASE_NAME = ruby
108
109arch = x86_64-darwin22
110sitearch = $(arch)
111ruby_version = 3.2.0
112ruby = $(bindir)/$(RUBY_BASE_NAME)
113RUBY = $(ruby)
114BUILTRUBY = $(bindir)/$(RUBY_BASE_NAME)
115ruby_headers = $(hdrdir)/ruby.h $(hdrdir)/ruby/backward.h $(hdrdir)/ruby/ruby.h $(hdrdir)/ruby/defines.h $(hdrdir)/ruby/missing.h $(hdrdir)/ruby/intern.h $(hdrdir)/ruby/st.h $(hdrdir)/ruby/subst.h $(arch_hdrdir)/ruby/config.h
116
117RM = rm -f
118RM_RF = rm -fr
119RMDIRS = rmdir -p
120MAKEDIRS = /usr/local/opt/coreutils/bin/gmkdir -p
121INSTALL = /usr/local/opt/coreutils/bin/ginstall -c
122INSTALL_PROG = $(INSTALL) -m 0755
123INSTALL_DATA = $(INSTALL) -m 644
124COPY = cp
125TOUCH = exit >
126
127#### End of system configuration section. ####
128
129preload =
130libpath = . $(libdir)
131LIBPATH = -L. -L$(libdir)
132DEFFILE =
133
134CLEANFILES = mkmf.log
135DISTCLEANFILES =
136DISTCLEANDIRS =
137
138extout =
139extout_prefix =
140target_prefix =
141LOCAL_LIBS =
142LIBS = $(LIBRUBYARG_SHARED) -lc++ -lpthread
143ORIG_SRCS = Generate.cpp Panel.cpp Random.cpp Serializer.cpp Test.cpp wittle_generator.cpp
144SRCS = $(ORIG_SRCS)
145OBJS = Generate.o Panel.o Random.o Serializer.o Test.o wittle_generator.o
146HDRS = $(srcdir)/Base64.h $(srcdir)/Generate.h $(srcdir)/Panel.h $(srcdir)/PuzzleSymbols.h $(srcdir)/Random.h $(srcdir)/Serializer.h
147LOCAL_HDRS =
148TARGET = wittle_generator
149TARGET_NAME = wittle_generator
150TARGET_ENTRY = Init_$(TARGET_NAME)
151DLLIB = $(TARGET).bundle
152EXTSTATIC =
153STATIC_LIB =
154
155TIMESTAMP_DIR = .
156BINDIR = $(bindir)
157RUBYCOMMONDIR = $(sitedir)$(target_prefix)
158RUBYLIBDIR = $(sitelibdir)$(target_prefix)
159RUBYARCHDIR = $(sitearchdir)$(target_prefix)
160HDRDIR = $(sitehdrdir)$(target_prefix)
161ARCHHDRDIR = $(sitearchhdrdir)$(target_prefix)
162TARGET_SO_DIR =
163TARGET_SO = $(TARGET_SO_DIR)$(DLLIB)
164CLEANLIBS = $(TARGET_SO) $(TARGET_SO).dSYM
165CLEANOBJS = $(OBJS) *.bak
166TARGET_SO_DIR_TIMESTAMP = $(TIMESTAMP_DIR)/.sitearchdir.time
167
168all: $(DLLIB)
169static: $(STATIC_LIB)
170.PHONY: all install static install-so install-rb
171.PHONY: clean clean-so clean-static clean-rb
172
173clean-static::
174clean-rb-default::
175clean-rb::
176clean-so::
177clean: clean-so clean-static clean-rb-default clean-rb
178 -$(Q)$(RM_RF) $(CLEANLIBS) $(CLEANOBJS) $(CLEANFILES) .*.time
179
180distclean-rb-default::
181distclean-rb::
182distclean-so::
183distclean-static::
184distclean: clean distclean-so distclean-static distclean-rb-default distclean-rb
185 -$(Q)$(RM) Makefile $(RUBY_EXTCONF_H) conftest.* mkmf.log
186 -$(Q)$(RM) core ruby$(EXEEXT) *~ $(DISTCLEANFILES)
187 -$(Q)$(RMDIRS) $(DISTCLEANDIRS) 2> /dev/null || true
188
189realclean: distclean
190install: install-so install-rb
191
192install-so: $(DLLIB) $(TARGET_SO_DIR_TIMESTAMP)
193 $(INSTALL_PROG) $(DLLIB) $(RUBYARCHDIR)
194clean-static::
195 -$(Q)$(RM) $(STATIC_LIB)
196install-rb: pre-install-rb do-install-rb install-rb-default
197install-rb-default: pre-install-rb-default do-install-rb-default
198pre-install-rb: Makefile
199pre-install-rb-default: Makefile
200do-install-rb:
201do-install-rb-default:
202pre-install-rb-default:
203 @$(NULLCMD)
204$(TARGET_SO_DIR_TIMESTAMP):
205 $(Q) $(MAKEDIRS) $(@D) $(RUBYARCHDIR)
206 $(Q) $(TOUCH) $@
207
208site-install: site-install-so site-install-rb
209site-install-so: install-so
210site-install-rb: install-rb
211
212.SUFFIXES: .c .m .cc .mm .cxx .cpp .o .S
213
214.cc.o:
215 $(ECHO) compiling $(<)
216 $(Q) $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(COUTFLAG)$@ -c $(CSRCFLAG)$<
217
218.cc.S:
219 $(ECHO) translating $(<)
220 $(Q) $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(COUTFLAG)$@ -S $(CSRCFLAG)$<
221
222.mm.o:
223 $(ECHO) compiling $(<)
224 $(Q) $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(COUTFLAG)$@ -c $(CSRCFLAG)$<
225
226.mm.S:
227 $(ECHO) translating $(<)
228 $(Q) $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(COUTFLAG)$@ -S $(CSRCFLAG)$<
229
230.cxx.o:
231 $(ECHO) compiling $(<)
232 $(Q) $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(COUTFLAG)$@ -c $(CSRCFLAG)$<
233
234.cxx.S:
235 $(ECHO) translating $(<)
236 $(Q) $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(COUTFLAG)$@ -S $(CSRCFLAG)$<
237
238.cpp.o:
239 $(ECHO) compiling $(<)
240 $(Q) $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(COUTFLAG)$@ -c $(CSRCFLAG)$<
241
242.cpp.S:
243 $(ECHO) translating $(<)
244 $(Q) $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(COUTFLAG)$@ -S $(CSRCFLAG)$<
245
246.c.o:
247 $(ECHO) compiling $(<)
248 $(Q) $(CC) $(INCFLAGS) $(CPPFLAGS) $(CFLAGS) $(COUTFLAG)$@ -c $(CSRCFLAG)$<
249
250.c.S:
251 $(ECHO) translating $(<)
252 $(Q) $(CC) $(INCFLAGS) $(CPPFLAGS) $(CFLAGS) $(COUTFLAG)$@ -S $(CSRCFLAG)$<
253
254.m.o:
255 $(ECHO) compiling $(<)
256 $(Q) $(CC) $(INCFLAGS) $(CPPFLAGS) $(CFLAGS) $(COUTFLAG)$@ -c $(CSRCFLAG)$<
257
258.m.S:
259 $(ECHO) translating $(<)
260 $(Q) $(CC) $(INCFLAGS) $(CPPFLAGS) $(CFLAGS) $(COUTFLAG)$@ -S $(CSRCFLAG)$<
261
262$(TARGET_SO): $(OBJS) Makefile
263 $(ECHO) linking shared-object $(DLLIB)
264 -$(Q)$(RM) $(@)
265 $(Q) $(LDSHAREDXX) -o $@ $(OBJS) $(LIBPATH) $(DLDFLAGS) $(LOCAL_LIBS) $(LIBS)
266 $(Q) $(POSTLINK)
267
268
269
270$(OBJS): $(HDRS) $(ruby_headers)
diff --git a/lib/tasks/wittle_tasks.rake b/lib/tasks/wittle_tasks.rake new file mode 100644 index 0000000..854e5c9 --- /dev/null +++ b/lib/tasks/wittle_tasks.rake
@@ -0,0 +1,4 @@
1# desc "Explaining what the task does"
2# task :wittle do
3# # Task goes here
4# end
diff --git a/lib/wittle.rb b/lib/wittle.rb new file mode 100644 index 0000000..44bfc3f --- /dev/null +++ b/lib/wittle.rb
@@ -0,0 +1,6 @@
1require "wittle/version"
2require "wittle/engine"
3
4module Wittle
5 # Your code goes here...
6end
diff --git a/lib/wittle/engine.rb b/lib/wittle/engine.rb new file mode 100644 index 0000000..5c73a8e --- /dev/null +++ b/lib/wittle/engine.rb
@@ -0,0 +1,5 @@
1module Wittle
2 class Engine < ::Rails::Engine
3 isolate_namespace Wittle
4 end
5end
diff --git a/lib/wittle/version.rb b/lib/wittle/version.rb new file mode 100644 index 0000000..a1538e2 --- /dev/null +++ b/lib/wittle/version.rb
@@ -0,0 +1,3 @@
1module Wittle
2 VERSION = "0.1.0"
3end
diff --git a/test/controllers/.keep b/test/controllers/.keep new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/test/controllers/.keep
diff --git a/test/dummy/Rakefile b/test/dummy/Rakefile new file mode 100644 index 0000000..9a5ea73 --- /dev/null +++ b/test/dummy/Rakefile
@@ -0,0 +1,6 @@
1# Add your own tasks in files placed in lib/tasks ending in .rake,
2# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3
4require_relative "config/application"
5
6Rails.application.load_tasks
diff --git a/test/dummy/app/assets/config/manifest.js b/test/dummy/app/assets/config/manifest.js new file mode 100644 index 0000000..f482c48 --- /dev/null +++ b/test/dummy/app/assets/config/manifest.js
@@ -0,0 +1,3 @@
1//= link_tree ../images
2//= link_directory ../stylesheets .css
3//= link wittle_manifest.js
diff --git a/test/dummy/app/assets/images/.keep b/test/dummy/app/assets/images/.keep new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/test/dummy/app/assets/images/.keep
diff --git a/test/dummy/app/assets/stylesheets/application.css b/test/dummy/app/assets/stylesheets/application.css new file mode 100644 index 0000000..0ebd7fe --- /dev/null +++ b/test/dummy/app/assets/stylesheets/application.css
@@ -0,0 +1,15 @@
1/*
2 * This is a manifest file that'll be compiled into application.css, which will include all the files
3 * listed below.
4 *
5 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6 * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
7 *
8 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9 * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
10 * files in this directory. Styles in this file should be added after the last require_* statement.
11 * It is generally better to create a new file per style scope.
12 *
13 *= require_tree .
14 *= require_self
15 */
diff --git a/test/dummy/app/channels/application_cable/channel.rb b/test/dummy/app/channels/application_cable/channel.rb new file mode 100644 index 0000000..d672697 --- /dev/null +++ b/test/dummy/app/channels/application_cable/channel.rb
@@ -0,0 +1,4 @@
1module ApplicationCable
2 class Channel < ActionCable::Channel::Base
3 end
4end
diff --git a/test/dummy/app/channels/application_cable/connection.rb b/test/dummy/app/channels/application_cable/connection.rb new file mode 100644 index 0000000..0ff5442 --- /dev/null +++ b/test/dummy/app/channels/application_cable/connection.rb
@@ -0,0 +1,4 @@
1module ApplicationCable
2 class Connection < ActionCable::Connection::Base
3 end
4end
diff --git a/test/dummy/app/controllers/application_controller.rb b/test/dummy/app/controllers/application_controller.rb new file mode 100644 index 0000000..09705d1 --- /dev/null +++ b/test/dummy/app/controllers/application_controller.rb
@@ -0,0 +1,2 @@
1class ApplicationController < ActionController::Base
2end
diff --git a/test/dummy/app/controllers/concerns/.keep b/test/dummy/app/controllers/concerns/.keep new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/test/dummy/app/controllers/concerns/.keep
diff --git a/test/dummy/app/helpers/application_helper.rb b/test/dummy/app/helpers/application_helper.rb new file mode 100644 index 0000000..de6be79 --- /dev/null +++ b/test/dummy/app/helpers/application_helper.rb
@@ -0,0 +1,2 @@
1module ApplicationHelper
2end
diff --git a/test/dummy/app/jobs/application_job.rb b/test/dummy/app/jobs/application_job.rb new file mode 100644 index 0000000..d394c3d --- /dev/null +++ b/test/dummy/app/jobs/application_job.rb
@@ -0,0 +1,7 @@
1class ApplicationJob < ActiveJob::Base
2 # Automatically retry jobs that encountered a deadlock
3 # retry_on ActiveRecord::Deadlocked
4
5 # Most jobs are safe to ignore if the underlying records are no longer available
6 # discard_on ActiveJob::DeserializationError
7end
diff --git a/test/dummy/app/mailers/application_mailer.rb b/test/dummy/app/mailers/application_mailer.rb new file mode 100644 index 0000000..3c34c81 --- /dev/null +++ b/test/dummy/app/mailers/application_mailer.rb
@@ -0,0 +1,4 @@
1class ApplicationMailer < ActionMailer::Base
2 default from: "from@example.com"
3 layout "mailer"
4end
diff --git a/test/dummy/app/models/application_record.rb b/test/dummy/app/models/application_record.rb new file mode 100644 index 0000000..b63caeb --- /dev/null +++ b/test/dummy/app/models/application_record.rb
@@ -0,0 +1,3 @@
1class ApplicationRecord < ActiveRecord::Base
2 primary_abstract_class
3end
diff --git a/test/dummy/app/models/concerns/.keep b/test/dummy/app/models/concerns/.keep new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/test/dummy/app/models/concerns/.keep
diff --git a/test/dummy/app/views/layouts/application.html.erb b/test/dummy/app/views/layouts/application.html.erb new file mode 100644 index 0000000..f72b4ef --- /dev/null +++ b/test/dummy/app/views/layouts/application.html.erb
@@ -0,0 +1,15 @@
1<!DOCTYPE html>
2<html>
3 <head>
4 <title>Dummy</title>
5 <meta name="viewport" content="width=device-width,initial-scale=1">
6 <%= csrf_meta_tags %>
7 <%= csp_meta_tag %>
8
9 <%= stylesheet_link_tag "application" %>
10 </head>
11
12 <body>
13 <%= yield %>
14 </body>
15</html>
diff --git a/test/dummy/app/views/layouts/mailer.html.erb b/test/dummy/app/views/layouts/mailer.html.erb new file mode 100644 index 0000000..3aac900 --- /dev/null +++ b/test/dummy/app/views/layouts/mailer.html.erb
@@ -0,0 +1,13 @@
1<!DOCTYPE html>
2<html>
3 <head>
4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5 <style>
6 /* Email styles need to be inline */
7 </style>
8 </head>
9
10 <body>
11 <%= yield %>
12 </body>
13</html>
diff --git a/test/dummy/app/views/layouts/mailer.text.erb b/test/dummy/app/views/layouts/mailer.text.erb new file mode 100644 index 0000000..37f0bdd --- /dev/null +++ b/test/dummy/app/views/layouts/mailer.text.erb
@@ -0,0 +1 @@
<%= yield %>
diff --git a/test/dummy/bin/rails b/test/dummy/bin/rails new file mode 100755 index 0000000..efc0377 --- /dev/null +++ b/test/dummy/bin/rails
@@ -0,0 +1,4 @@
1#!/usr/bin/env ruby
2APP_PATH = File.expand_path("../config/application", __dir__)
3require_relative "../config/boot"
4require "rails/commands"
diff --git a/test/dummy/bin/rake b/test/dummy/bin/rake new file mode 100755 index 0000000..4fbf10b --- /dev/null +++ b/test/dummy/bin/rake
@@ -0,0 +1,4 @@
1#!/usr/bin/env ruby
2require_relative "../config/boot"
3require "rake"
4Rake.application.run
diff --git a/test/dummy/bin/setup b/test/dummy/bin/setup new file mode 100755 index 0000000..3cd5a9d --- /dev/null +++ b/test/dummy/bin/setup
@@ -0,0 +1,33 @@
1#!/usr/bin/env ruby
2require "fileutils"
3
4# path to your application root.
5APP_ROOT = File.expand_path("..", __dir__)
6
7def system!(*args)
8 system(*args, exception: true)
9end
10
11FileUtils.chdir APP_ROOT do
12 # This script is a way to set up or update your development environment automatically.
13 # This script is idempotent, so that you can run it at any time and get an expectable outcome.
14 # Add necessary setup steps to this file.
15
16 puts "== Installing dependencies =="
17 system! "gem install bundler --conservative"
18 system("bundle check") || system!("bundle install")
19
20 # puts "\n== Copying sample files =="
21 # unless File.exist?("config/database.yml")
22 # FileUtils.cp "config/database.yml.sample", "config/database.yml"
23 # end
24
25 puts "\n== Preparing database =="
26 system! "bin/rails db:prepare"
27
28 puts "\n== Removing old logs and tempfiles =="
29 system! "bin/rails log:clear tmp:clear"
30
31 puts "\n== Restarting application server =="
32 system! "bin/rails restart"
33end
diff --git a/test/dummy/config.ru b/test/dummy/config.ru new file mode 100644 index 0000000..4a3c09a --- /dev/null +++ b/test/dummy/config.ru
@@ -0,0 +1,6 @@
1# This file is used by Rack-based servers to start the application.
2
3require_relative "config/environment"
4
5run Rails.application
6Rails.application.load_server
diff --git a/test/dummy/config/application.rb b/test/dummy/config/application.rb new file mode 100644 index 0000000..67cc140 --- /dev/null +++ b/test/dummy/config/application.rb
@@ -0,0 +1,29 @@
1require_relative "boot"
2
3require "rails/all"
4
5# Require the gems listed in Gemfile, including any gems
6# you've limited to :test, :development, or :production.
7Bundler.require(*Rails.groups)
8
9module Dummy
10 class Application < Rails::Application
11 config.load_defaults Rails::VERSION::STRING.to_f
12
13 # For compatibility with applications that use this config
14 config.action_controller.include_all_helpers = false
15
16 # Please, add to the `ignore` list any other `lib` subdirectories that do
17 # not contain `.rb` files, or that should not be reloaded or eager loaded.
18 # Common ones are `templates`, `generators`, or `middleware`, for example.
19 config.autoload_lib(ignore: %w(assets tasks))
20
21 # Configuration for the application, engines, and railties goes here.
22 #
23 # These settings can be overridden in specific environments using the files
24 # in config/environments, which are processed later.
25 #
26 # config.time_zone = "Central Time (US & Canada)"
27 # config.eager_load_paths << Rails.root.join("extras")
28 end
29end
diff --git a/test/dummy/config/boot.rb b/test/dummy/config/boot.rb new file mode 100644 index 0000000..116591a --- /dev/null +++ b/test/dummy/config/boot.rb
@@ -0,0 +1,5 @@
1# Set up gems listed in the Gemfile.
2ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../../Gemfile", __dir__)
3
4require "bundler/setup" if File.exist?(ENV["BUNDLE_GEMFILE"])
5$LOAD_PATH.unshift File.expand_path("../../../lib", __dir__)
diff --git a/test/dummy/config/cable.yml b/test/dummy/config/cable.yml new file mode 100644 index 0000000..98367f8 --- /dev/null +++ b/test/dummy/config/cable.yml
@@ -0,0 +1,10 @@
1development:
2 adapter: async
3
4test:
5 adapter: test
6
7production:
8 adapter: redis
9 url: <%= ENV.fetch("REDIS_URL") { "redis://localhost:6379/1" } %>
10 channel_prefix: dummy_production
diff --git a/test/dummy/config/database.yml b/test/dummy/config/database.yml new file mode 100644 index 0000000..796466b --- /dev/null +++ b/test/dummy/config/database.yml
@@ -0,0 +1,25 @@
1# SQLite. Versions 3.8.0 and up are supported.
2# gem install sqlite3
3#
4# Ensure the SQLite 3 gem is defined in your Gemfile
5# gem "sqlite3"
6#
7default: &default
8 adapter: sqlite3
9 pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
10 timeout: 5000
11
12development:
13 <<: *default
14 database: storage/development.sqlite3
15
16# Warning: The database defined as "test" will be erased and
17# re-generated from your development database when you run "rake".
18# Do not set this db to the same as development or production.
19test:
20 <<: *default
21 database: storage/test.sqlite3
22
23production:
24 <<: *default
25 database: storage/production.sqlite3
diff --git a/test/dummy/config/environment.rb b/test/dummy/config/environment.rb new file mode 100644 index 0000000..cac5315 --- /dev/null +++ b/test/dummy/config/environment.rb
@@ -0,0 +1,5 @@
1# Load the Rails application.
2require_relative "application"
3
4# Initialize the Rails application.
5Rails.application.initialize!
diff --git a/test/dummy/config/environments/development.rb b/test/dummy/config/environments/development.rb new file mode 100644 index 0000000..2e7fb48 --- /dev/null +++ b/test/dummy/config/environments/development.rb
@@ -0,0 +1,76 @@
1require "active_support/core_ext/integer/time"
2
3Rails.application.configure do
4 # Settings specified here will take precedence over those in config/application.rb.
5
6 # In the development environment your application's code is reloaded any time
7 # it changes. This slows down response time but is perfect for development
8 # since you don't have to restart the web server when you make code changes.
9 config.enable_reloading = true
10
11 # Do not eager load code on boot.
12 config.eager_load = false
13
14 # Show full error reports.
15 config.consider_all_requests_local = true
16
17 # Enable server timing
18 config.server_timing = true
19
20 # Enable/disable caching. By default caching is disabled.
21 # Run rails dev:cache to toggle caching.
22 if Rails.root.join("tmp/caching-dev.txt").exist?
23 config.action_controller.perform_caching = true
24 config.action_controller.enable_fragment_cache_logging = true
25
26 config.cache_store = :memory_store
27 config.public_file_server.headers = {
28 "Cache-Control" => "public, max-age=#{2.days.to_i}"
29 }
30 else
31 config.action_controller.perform_caching = false
32
33 config.cache_store = :null_store
34 end
35
36 # Store uploaded files on the local file system (see config/storage.yml for options).
37 config.active_storage.service = :local
38
39 # Don't care if the mailer can't send.
40 config.action_mailer.raise_delivery_errors = false
41
42 config.action_mailer.perform_caching = false
43
44 # Print deprecation notices to the Rails logger.
45 config.active_support.deprecation = :log
46
47 # Raise exceptions for disallowed deprecations.
48 config.active_support.disallowed_deprecation = :raise
49
50 # Tell Active Support which deprecation messages to disallow.
51 config.active_support.disallowed_deprecation_warnings = []
52
53 # Raise an error on page load if there are pending migrations.
54 config.active_record.migration_error = :page_load
55
56 # Highlight code that triggered database queries in logs.
57 config.active_record.verbose_query_logs = true
58
59 # Highlight code that enqueued background job in logs.
60 config.active_job.verbose_enqueue_logs = true
61
62 # Suppress logger output for asset requests.
63 config.assets.quiet = true
64
65 # Raises error for missing translations.
66 # config.i18n.raise_on_missing_translations = true
67
68 # Annotate rendered view with file names.
69 # config.action_view.annotate_rendered_view_with_filenames = true
70
71 # Uncomment if you wish to allow Action Cable access from any origin.
72 # config.action_cable.disable_request_forgery_protection = true
73
74 # Raise error when a before_action's only/except options reference missing actions
75 config.action_controller.raise_on_missing_callback_actions = true
76end
diff --git a/test/dummy/config/environments/production.rb b/test/dummy/config/environments/production.rb new file mode 100644 index 0000000..714394b --- /dev/null +++ b/test/dummy/config/environments/production.rb
@@ -0,0 +1,97 @@
1require "active_support/core_ext/integer/time"
2
3Rails.application.configure do
4 # Settings specified here will take precedence over those in config/application.rb.
5
6 # Code is not reloaded between requests.
7 config.enable_reloading = false
8
9 # Eager load code on boot. This eager loads most of Rails and
10 # your application in memory, allowing both threaded web servers
11 # and those relying on copy on write to perform better.
12 # Rake tasks automatically ignore this option for performance.
13 config.eager_load = true
14
15 # Full error reports are disabled and caching is turned on.
16 config.consider_all_requests_local = false
17 config.action_controller.perform_caching = true
18
19 # Ensures that a master key has been made available in ENV["RAILS_MASTER_KEY"], config/master.key, or an environment
20 # key such as config/credentials/production.key. This key is used to decrypt credentials (and other encrypted files).
21 # config.require_master_key = true
22
23 # Enable static file serving from the `/public` folder (turn off if using NGINX/Apache for it).
24 config.public_file_server.enabled = true
25
26 # Compress CSS using a preprocessor.
27 # config.assets.css_compressor = :sass
28
29 # Do not fallback to assets pipeline if a precompiled asset is missed.
30 config.assets.compile = false
31
32 # Enable serving of images, stylesheets, and JavaScripts from an asset server.
33 # config.asset_host = "http://assets.example.com"
34
35 # Specifies the header that your server uses for sending files.
36 # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for Apache
37 # config.action_dispatch.x_sendfile_header = "X-Accel-Redirect" # for NGINX
38
39 # Store uploaded files on the local file system (see config/storage.yml for options).
40 config.active_storage.service = :local
41
42 # Mount Action Cable outside main process or domain.
43 # config.action_cable.mount_path = nil
44 # config.action_cable.url = "wss://example.com/cable"
45 # config.action_cable.allowed_request_origins = [ "http://example.com", /http:\/\/example.*/ ]
46
47 # Assume all access to the app is happening through a SSL-terminating reverse proxy.
48 # Can be used together with config.force_ssl for Strict-Transport-Security and secure cookies.
49 # config.assume_ssl = true
50
51 # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
52 config.force_ssl = true
53
54 # Log to STDOUT by default
55 config.logger = ActiveSupport::Logger.new(STDOUT)
56 .tap { |logger| logger.formatter = ::Logger::Formatter.new }
57 .then { |logger| ActiveSupport::TaggedLogging.new(logger) }
58
59 # Prepend all log lines with the following tags.
60 config.log_tags = [ :request_id ]
61
62 # Info include generic and useful information about system operation, but avoids logging too much
63 # information to avoid inadvertent exposure of personally identifiable information (PII). If you
64 # want to log everything, set the level to "debug".
65 config.log_level = ENV.fetch("RAILS_LOG_LEVEL", "info")
66
67 # Use a different cache store in production.
68 # config.cache_store = :mem_cache_store
69
70 # Use a real queuing backend for Active Job (and separate queues per environment).
71 # config.active_job.queue_adapter = :resque
72 # config.active_job.queue_name_prefix = "dummy_production"
73
74 config.action_mailer.perform_caching = false
75
76 # Ignore bad email addresses and do not raise email delivery errors.
77 # Set this to true and configure the email server for immediate delivery to raise delivery errors.
78 # config.action_mailer.raise_delivery_errors = false
79
80 # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
81 # the I18n.default_locale when a translation cannot be found).
82 config.i18n.fallbacks = true
83
84 # Don't log any deprecations.
85 config.active_support.report_deprecations = false
86
87 # Do not dump schema after migrations.
88 config.active_record.dump_schema_after_migration = false
89
90 # Enable DNS rebinding protection and other `Host` header attacks.
91 # config.hosts = [
92 # "example.com", # Allow requests from example.com
93 # /.*\.example\.com/ # Allow requests from subdomains like `www.example.com`
94 # ]
95 # Skip DNS rebinding protection for the default health check endpoint.
96 # config.host_authorization = { exclude: ->(request) { request.path == "/up" } }
97end
diff --git a/test/dummy/config/environments/test.rb b/test/dummy/config/environments/test.rb new file mode 100644 index 0000000..0dda9f9 --- /dev/null +++ b/test/dummy/config/environments/test.rb
@@ -0,0 +1,64 @@
1require "active_support/core_ext/integer/time"
2
3# The test environment is used exclusively to run your application's
4# test suite. You never need to work with it otherwise. Remember that
5# your test database is "scratch space" for the test suite and is wiped
6# and recreated between test runs. Don't rely on the data there!
7
8Rails.application.configure do
9 # Settings specified here will take precedence over those in config/application.rb.
10
11 # While tests run files are not watched, reloading is not necessary.
12 config.enable_reloading = false
13
14 # Eager loading loads your entire application. When running a single test locally,
15 # this is usually not necessary, and can slow down your test suite. However, it's
16 # recommended that you enable it in continuous integration systems to ensure eager
17 # loading is working properly before deploying your code.
18 config.eager_load = ENV["CI"].present?
19
20 # Configure public file server for tests with Cache-Control for performance.
21 config.public_file_server.enabled = true
22 config.public_file_server.headers = {
23 "Cache-Control" => "public, max-age=#{1.hour.to_i}"
24 }
25
26 # Show full error reports and disable caching.
27 config.consider_all_requests_local = true
28 config.action_controller.perform_caching = false
29 config.cache_store = :null_store
30
31 # Raise exceptions instead of rendering exception templates.
32 config.action_dispatch.show_exceptions = :rescuable
33
34 # Disable request forgery protection in test environment.
35 config.action_controller.allow_forgery_protection = false
36
37 # Store uploaded files on the local file system in a temporary directory.
38 config.active_storage.service = :test
39
40 config.action_mailer.perform_caching = false
41
42 # Tell Action Mailer not to deliver emails to the real world.
43 # The :test delivery method accumulates sent emails in the
44 # ActionMailer::Base.deliveries array.
45 config.action_mailer.delivery_method = :test
46
47 # Print deprecation notices to the stderr.
48 config.active_support.deprecation = :stderr
49
50 # Raise exceptions for disallowed deprecations.
51 config.active_support.disallowed_deprecation = :raise
52
53 # Tell Active Support which deprecation messages to disallow.
54 config.active_support.disallowed_deprecation_warnings = []
55
56 # Raises error for missing translations.
57 # config.i18n.raise_on_missing_translations = true
58
59 # Annotate rendered view with file names.
60 # config.action_view.annotate_rendered_view_with_filenames = true
61
62 # Raise error when a before_action's only/except options reference missing actions
63 config.action_controller.raise_on_missing_callback_actions = true
64end
diff --git a/test/dummy/config/initializers/assets.rb b/test/dummy/config/initializers/assets.rb new file mode 100644 index 0000000..2eeef96 --- /dev/null +++ b/test/dummy/config/initializers/assets.rb
@@ -0,0 +1,12 @@
1# Be sure to restart your server when you modify this file.
2
3# Version of your assets, change this if you want to expire all your assets.
4Rails.application.config.assets.version = "1.0"
5
6# Add additional assets to the asset load path.
7# Rails.application.config.assets.paths << Emoji.images_path
8
9# Precompile additional assets.
10# application.js, application.css, and all non-JS/CSS in the app/assets
11# folder are already added.
12# Rails.application.config.assets.precompile += %w( admin.js admin.css )
diff --git a/test/dummy/config/initializers/content_security_policy.rb b/test/dummy/config/initializers/content_security_policy.rb new file mode 100644 index 0000000..b3076b3 --- /dev/null +++ b/test/dummy/config/initializers/content_security_policy.rb
@@ -0,0 +1,25 @@
1# Be sure to restart your server when you modify this file.
2
3# Define an application-wide content security policy.
4# See the Securing Rails Applications Guide for more information:
5# https://guides.rubyonrails.org/security.html#content-security-policy-header
6
7# Rails.application.configure do
8# config.content_security_policy do |policy|
9# policy.default_src :self, :https
10# policy.font_src :self, :https, :data
11# policy.img_src :self, :https, :data
12# policy.object_src :none
13# policy.script_src :self, :https
14# policy.style_src :self, :https
15# # Specify URI for violation reports
16# # policy.report_uri "/csp-violation-report-endpoint"
17# end
18#
19# # Generate session nonces for permitted importmap, inline scripts, and inline styles.
20# config.content_security_policy_nonce_generator = ->(request) { request.session.id.to_s }
21# config.content_security_policy_nonce_directives = %w(script-src style-src)
22#
23# # Report violations without enforcing the policy.
24# # config.content_security_policy_report_only = true
25# end
diff --git a/test/dummy/config/initializers/filter_parameter_logging.rb b/test/dummy/config/initializers/filter_parameter_logging.rb new file mode 100644 index 0000000..c2d89e2 --- /dev/null +++ b/test/dummy/config/initializers/filter_parameter_logging.rb
@@ -0,0 +1,8 @@
1# Be sure to restart your server when you modify this file.
2
3# Configure parameters to be partially matched (e.g. passw matches password) and filtered from the log file.
4# Use this to limit dissemination of sensitive information.
5# See the ActiveSupport::ParameterFilter documentation for supported notations and behaviors.
6Rails.application.config.filter_parameters += [
7 :passw, :secret, :token, :_key, :crypt, :salt, :certificate, :otp, :ssn
8]
diff --git a/test/dummy/config/initializers/inflections.rb b/test/dummy/config/initializers/inflections.rb new file mode 100644 index 0000000..3860f65 --- /dev/null +++ b/test/dummy/config/initializers/inflections.rb
@@ -0,0 +1,16 @@
1# Be sure to restart your server when you modify this file.
2
3# Add new inflection rules using the following format. Inflections
4# are locale specific, and you may define rules for as many different
5# locales as you wish. All of these examples are active by default:
6# ActiveSupport::Inflector.inflections(:en) do |inflect|
7# inflect.plural /^(ox)$/i, "\\1en"
8# inflect.singular /^(ox)en/i, "\\1"
9# inflect.irregular "person", "people"
10# inflect.uncountable %w( fish sheep )
11# end
12
13# These inflection rules are supported but not enabled by default:
14# ActiveSupport::Inflector.inflections(:en) do |inflect|
15# inflect.acronym "RESTful"
16# end
diff --git a/test/dummy/config/initializers/permissions_policy.rb b/test/dummy/config/initializers/permissions_policy.rb new file mode 100644 index 0000000..7db3b95 --- /dev/null +++ b/test/dummy/config/initializers/permissions_policy.rb
@@ -0,0 +1,13 @@
1# Be sure to restart your server when you modify this file.
2
3# Define an application-wide HTTP permissions policy. For further
4# information see: https://developers.google.com/web/updates/2018/06/feature-policy
5
6# Rails.application.config.permissions_policy do |policy|
7# policy.camera :none
8# policy.gyroscope :none
9# policy.microphone :none
10# policy.usb :none
11# policy.fullscreen :self
12# policy.payment :self, "https://secure.example.com"
13# end
diff --git a/test/dummy/config/locales/en.yml b/test/dummy/config/locales/en.yml new file mode 100644 index 0000000..6c349ae --- /dev/null +++ b/test/dummy/config/locales/en.yml
@@ -0,0 +1,31 @@
1# Files in the config/locales directory are used for internationalization and
2# are automatically loaded by Rails. If you want to use locales other than
3# English, add the necessary files in this directory.
4#
5# To use the locales, use `I18n.t`:
6#
7# I18n.t "hello"
8#
9# In views, this is aliased to just `t`:
10#
11# <%= t("hello") %>
12#
13# To use a different locale, set it with `I18n.locale`:
14#
15# I18n.locale = :es
16#
17# This would use the information in config/locales/es.yml.
18#
19# To learn more about the API, please read the Rails Internationalization guide
20# at https://guides.rubyonrails.org/i18n.html.
21#
22# Be aware that YAML interprets the following case-insensitive strings as
23# booleans: `true`, `false`, `on`, `off`, `yes`, `no`. Therefore, these strings
24# must be quoted to be interpreted as strings. For example:
25#
26# en:
27# "yes": yup
28# enabled: "ON"
29
30en:
31 hello: "Hello world"
diff --git a/test/dummy/config/puma.rb b/test/dummy/config/puma.rb new file mode 100644 index 0000000..afa809b --- /dev/null +++ b/test/dummy/config/puma.rb
@@ -0,0 +1,35 @@
1# This configuration file will be evaluated by Puma. The top-level methods that
2# are invoked here are part of Puma's configuration DSL. For more information
3# about methods provided by the DSL, see https://puma.io/puma/Puma/DSL.html.
4
5# Puma can serve each request in a thread from an internal thread pool.
6# The `threads` method setting takes two numbers: a minimum and maximum.
7# Any libraries that use thread pools should be configured to match
8# the maximum value specified for Puma. Default is set to 5 threads for minimum
9# and maximum; this matches the default thread size of Active Record.
10max_threads_count = ENV.fetch("RAILS_MAX_THREADS") { 5 }
11min_threads_count = ENV.fetch("RAILS_MIN_THREADS") { max_threads_count }
12threads min_threads_count, max_threads_count
13
14# Specifies that the worker count should equal the number of processors in production.
15if ENV["RAILS_ENV"] == "production"
16 require "concurrent-ruby"
17 worker_count = Integer(ENV.fetch("WEB_CONCURRENCY") { Concurrent.physical_processor_count })
18 workers worker_count if worker_count > 1
19end
20
21# Specifies the `worker_timeout` threshold that Puma will use to wait before
22# terminating a worker in development environments.
23worker_timeout 3600 if ENV.fetch("RAILS_ENV", "development") == "development"
24
25# Specifies the `port` that Puma will listen on to receive requests; default is 3000.
26port ENV.fetch("PORT") { 3000 }
27
28# Specifies the `environment` that Puma will run in.
29environment ENV.fetch("RAILS_ENV") { "development" }
30
31# Specifies the `pidfile` that Puma will use.
32pidfile ENV.fetch("PIDFILE") { "tmp/pids/server.pid" }
33
34# Allow puma to be restarted by `bin/rails restart` command.
35plugin :tmp_restart
diff --git a/test/dummy/config/routes.rb b/test/dummy/config/routes.rb new file mode 100644 index 0000000..2e69726 --- /dev/null +++ b/test/dummy/config/routes.rb
@@ -0,0 +1,3 @@
1Rails.application.routes.draw do
2 mount Wittle::Engine => "/wittle"
3end
diff --git a/test/dummy/config/storage.yml b/test/dummy/config/storage.yml new file mode 100644 index 0000000..4942ab6 --- /dev/null +++ b/test/dummy/config/storage.yml
@@ -0,0 +1,34 @@
1test:
2 service: Disk
3 root: <%= Rails.root.join("tmp/storage") %>
4
5local:
6 service: Disk
7 root: <%= Rails.root.join("storage") %>
8
9# Use bin/rails credentials:edit to set the AWS secrets (as aws:access_key_id|secret_access_key)
10# amazon:
11# service: S3
12# access_key_id: <%= Rails.application.credentials.dig(:aws, :access_key_id) %>
13# secret_access_key: <%= Rails.application.credentials.dig(:aws, :secret_access_key) %>
14# region: us-east-1
15# bucket: your_own_bucket-<%= Rails.env %>
16
17# Remember not to checkin your GCS keyfile to a repository
18# google:
19# service: GCS
20# project: your_project
21# credentials: <%= Rails.root.join("path/to/gcs.keyfile") %>
22# bucket: your_own_bucket-<%= Rails.env %>
23
24# Use bin/rails credentials:edit to set the Azure Storage secret (as azure_storage:storage_access_key)
25# microsoft:
26# service: AzureStorage
27# storage_account_name: your_account_name
28# storage_access_key: <%= Rails.application.credentials.dig(:azure_storage, :storage_access_key) %>
29# container: your_container_name-<%= Rails.env %>
30
31# mirror:
32# service: Mirror
33# primary: local
34# mirrors: [ amazon, google, microsoft ]
diff --git a/test/dummy/lib/assets/.keep b/test/dummy/lib/assets/.keep new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/test/dummy/lib/assets/.keep
diff --git a/test/dummy/public/404.html b/test/dummy/public/404.html new file mode 100644 index 0000000..2be3af2 --- /dev/null +++ b/test/dummy/public/404.html
@@ -0,0 +1,67 @@
1<!DOCTYPE html>
2<html>
3<head>
4 <title>The page you were looking for doesn't exist (404)</title>
5 <meta name="viewport" content="width=device-width,initial-scale=1">
6 <style>
7 .rails-default-error-page {
8 background-color: #EFEFEF;
9 color: #2E2F30;
10 text-align: center;
11 font-family: arial, sans-serif;
12 margin: 0;
13 }
14
15 .rails-default-error-page div.dialog {
16 width: 95%;
17 max-width: 33em;
18 margin: 4em auto 0;
19 }
20
21 .rails-default-error-page div.dialog > div {
22 border: 1px solid #CCC;
23 border-right-color: #999;
24 border-left-color: #999;
25 border-bottom-color: #BBB;
26 border-top: #B00100 solid 4px;
27 border-top-left-radius: 9px;
28 border-top-right-radius: 9px;
29 background-color: white;
30 padding: 7px 12% 0;
31 box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32 }
33
34 .rails-default-error-page h1 {
35 font-size: 100%;
36 color: #730E15;
37 line-height: 1.5em;
38 }
39
40 .rails-default-error-page div.dialog > p {
41 margin: 0 0 1em;
42 padding: 1em;
43 background-color: #F7F7F7;
44 border: 1px solid #CCC;
45 border-right-color: #999;
46 border-left-color: #999;
47 border-bottom-color: #999;
48 border-bottom-left-radius: 4px;
49 border-bottom-right-radius: 4px;
50 border-top-color: #DADADA;
51 color: #666;
52 box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53 }
54 </style>
55</head>
56
57<body class="rails-default-error-page">
58 <!-- This file lives in public/404.html -->
59 <div class="dialog">
60 <div>
61 <h1>The page you were looking for doesn't exist.</h1>
62 <p>You may have mistyped the address or the page may have moved.</p>
63 </div>
64 <p>If you are the application owner check the logs for more information.</p>
65 </div>
66</body>
67</html>
diff --git a/test/dummy/public/422.html b/test/dummy/public/422.html new file mode 100644 index 0000000..c08eac0 --- /dev/null +++ b/test/dummy/public/422.html
@@ -0,0 +1,67 @@
1<!DOCTYPE html>
2<html>
3<head>
4 <title>The change you wanted was rejected (422)</title>
5 <meta name="viewport" content="width=device-width,initial-scale=1">
6 <style>
7 .rails-default-error-page {
8 background-color: #EFEFEF;
9 color: #2E2F30;
10 text-align: center;
11 font-family: arial, sans-serif;
12 margin: 0;
13 }
14
15 .rails-default-error-page div.dialog {
16 width: 95%;
17 max-width: 33em;
18 margin: 4em auto 0;
19 }
20
21 .rails-default-error-page div.dialog > div {
22 border: 1px solid #CCC;
23 border-right-color: #999;
24 border-left-color: #999;
25 border-bottom-color: #BBB;
26 border-top: #B00100 solid 4px;
27 border-top-left-radius: 9px;
28 border-top-right-radius: 9px;
29 background-color: white;
30 padding: 7px 12% 0;
31 box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32 }
33
34 .rails-default-error-page h1 {
35 font-size: 100%;
36 color: #730E15;
37 line-height: 1.5em;
38 }
39
40 .rails-default-error-page div.dialog > p {
41 margin: 0 0 1em;
42 padding: 1em;
43 background-color: #F7F7F7;
44 border: 1px solid #CCC;
45 border-right-color: #999;
46 border-left-color: #999;
47 border-bottom-color: #999;
48 border-bottom-left-radius: 4px;
49 border-bottom-right-radius: 4px;
50 border-top-color: #DADADA;
51 color: #666;
52 box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53 }
54 </style>
55</head>
56
57<body class="rails-default-error-page">
58 <!-- This file lives in public/422.html -->
59 <div class="dialog">
60 <div>
61 <h1>The change you wanted was rejected.</h1>
62 <p>Maybe you tried to change something you didn't have access to.</p>
63 </div>
64 <p>If you are the application owner check the logs for more information.</p>
65 </div>
66</body>
67</html>
diff --git a/test/dummy/public/500.html b/test/dummy/public/500.html new file mode 100644 index 0000000..78a030a --- /dev/null +++ b/test/dummy/public/500.html
@@ -0,0 +1,66 @@
1<!DOCTYPE html>
2<html>
3<head>
4 <title>We're sorry, but something went wrong (500)</title>
5 <meta name="viewport" content="width=device-width,initial-scale=1">
6 <style>
7 .rails-default-error-page {
8 background-color: #EFEFEF;
9 color: #2E2F30;
10 text-align: center;
11 font-family: arial, sans-serif;
12 margin: 0;
13 }
14
15 .rails-default-error-page div.dialog {
16 width: 95%;
17 max-width: 33em;
18 margin: 4em auto 0;
19 }
20
21 .rails-default-error-page div.dialog > div {
22 border: 1px solid #CCC;
23 border-right-color: #999;
24 border-left-color: #999;
25 border-bottom-color: #BBB;
26 border-top: #B00100 solid 4px;
27 border-top-left-radius: 9px;
28 border-top-right-radius: 9px;
29 background-color: white;
30 padding: 7px 12% 0;
31 box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32 }
33
34 .rails-default-error-page h1 {
35 font-size: 100%;
36 color: #730E15;
37 line-height: 1.5em;
38 }
39
40 .rails-default-error-page div.dialog > p {
41 margin: 0 0 1em;
42 padding: 1em;
43 background-color: #F7F7F7;
44 border: 1px solid #CCC;
45 border-right-color: #999;
46 border-left-color: #999;
47 border-bottom-color: #999;
48 border-bottom-left-radius: 4px;
49 border-bottom-right-radius: 4px;
50 border-top-color: #DADADA;
51 color: #666;
52 box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53 }
54 </style>
55</head>
56
57<body class="rails-default-error-page">
58 <!-- This file lives in public/500.html -->
59 <div class="dialog">
60 <div>
61 <h1>We're sorry, but something went wrong.</h1>
62 </div>
63 <p>If you are the application owner check the logs for more information.</p>
64 </div>
65</body>
66</html>
diff --git a/test/dummy/public/apple-touch-icon-precomposed.png b/test/dummy/public/apple-touch-icon-precomposed.png new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/test/dummy/public/apple-touch-icon-precomposed.png
diff --git a/test/dummy/public/apple-touch-icon.png b/test/dummy/public/apple-touch-icon.png new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/test/dummy/public/apple-touch-icon.png
diff --git a/test/dummy/public/favicon.ico b/test/dummy/public/favicon.ico new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/test/dummy/public/favicon.ico
diff --git a/test/fixtures/files/.keep b/test/fixtures/files/.keep new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/test/fixtures/files/.keep
diff --git a/test/helpers/.keep b/test/helpers/.keep new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/test/helpers/.keep
diff --git a/test/integration/.keep b/test/integration/.keep new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/test/integration/.keep
diff --git a/test/integration/navigation_test.rb b/test/integration/navigation_test.rb new file mode 100644 index 0000000..ebbc098 --- /dev/null +++ b/test/integration/navigation_test.rb
@@ -0,0 +1,7 @@
1require "test_helper"
2
3class NavigationTest < ActionDispatch::IntegrationTest
4 # test "the truth" do
5 # assert true
6 # end
7end
diff --git a/test/mailers/.keep b/test/mailers/.keep new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/test/mailers/.keep
diff --git a/test/models/.keep b/test/models/.keep new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/test/models/.keep
diff --git a/test/test_helper.rb b/test/test_helper.rb new file mode 100644 index 0000000..9d47a1b --- /dev/null +++ b/test/test_helper.rb
@@ -0,0 +1,15 @@
1# Configure Rails Environment
2ENV["RAILS_ENV"] = "test"
3
4require_relative "../test/dummy/config/environment"
5ActiveRecord::Migrator.migrations_paths = [File.expand_path("../test/dummy/db/migrate", __dir__)]
6ActiveRecord::Migrator.migrations_paths << File.expand_path("../db/migrate", __dir__)
7require "rails/test_help"
8
9# Load fixtures from the engine
10if ActiveSupport::TestCase.respond_to?(:fixture_paths=)
11 ActiveSupport::TestCase.fixture_paths = [File.expand_path("fixtures", __dir__)]
12 ActionDispatch::IntegrationTest.fixture_paths = ActiveSupport::TestCase.fixture_paths
13 ActiveSupport::TestCase.file_fixture_path = File.expand_path("fixtures", __dir__) + "/files"
14 ActiveSupport::TestCase.fixtures :all
15end
diff --git a/test/wittle_test.rb b/test/wittle_test.rb new file mode 100644 index 0000000..e28a047 --- /dev/null +++ b/test/wittle_test.rb
@@ -0,0 +1,7 @@
1require "test_helper"
2
3class WittleTest < ActiveSupport::TestCase
4 test "it has a version number" do
5 assert Wittle::VERSION
6 end
7end
diff --git a/wittle_generator.gemspec b/wittle_generator.gemspec index fc92577..11c2107 100644 --- a/wittle_generator.gemspec +++ b/wittle_generator.gemspec
@@ -1,6 +1,8 @@
1require_relative "lib/wittle/version"
2
1Gem::Specification.new do |s| 3Gem::Specification.new do |s|
2 s.name = 'wittle_generator' 4 s.name = 'wittle'
3 s.version = "0.0.1" 5 s.version = Wittle::VERSION
4 s.date = '2023-10-27' 6 s.date = '2023-10-27'
5 s.summary = 'Wittle puzzles generator' 7 s.summary = 'Wittle puzzles generator'
6 s.authors = ['hatkirby', 'Sigma144', 'jbzdarkid'] 8 s.authors = ['hatkirby', 'Sigma144', 'jbzdarkid']
@@ -8,7 +10,11 @@ Gem::Specification.new do |s|
8 s.licenses = ['MIT'] 10 s.licenses = ['MIT']
9 s.homepage = 'https://code.fourisland.com/wittle-generator' 11 s.homepage = 'https://code.fourisland.com/wittle-generator'
10 s.extensions = ['ext/wittle_generator/extconf.rb'] 12 s.extensions = ['ext/wittle_generator/extconf.rb']
11 s.files = Dir['ext/wittle_generator/*.h', 'ext/wittle_generator/*.cpp']
12 s.require_paths = ['lib'] 13 s.require_paths = ['lib']
14 s.files = Dir.chdir(File.expand_path(__dir__)) do
15 Dir["{app,config,db,lib,ext}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
16 end
17
18 s.add_dependency "rails", ">= 7.1.1"
13 s.add_dependency "rice" 19 s.add_dependency "rice"
14end 20end