├── .github └── workflows │ └── build.yml ├── .gitignore ├── CHANGELOG.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── app ├── controllers │ └── clockwork_web │ │ └── home_controller.rb ├── helpers │ └── clockwork_web │ │ └── home_helper.rb └── views │ └── clockwork_web │ └── home │ └── index.html.erb ├── clockwork_web.gemspec ├── config └── routes.rb ├── lib ├── clockwork_web.rb └── clockwork_web │ ├── engine.rb │ └── version.rb └── test ├── controller_test.rb ├── internal ├── app │ └── assets │ │ └── config │ │ └── manifest.js ├── clock.rb └── config │ └── routes.rb └── test_helper.rb /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/clockwork_web/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/clockwork_web/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/clockwork_web/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/clockwork_web/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/clockwork_web/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/clockwork_web/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/clockwork_web/HEAD/Rakefile -------------------------------------------------------------------------------- /app/controllers/clockwork_web/home_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/clockwork_web/HEAD/app/controllers/clockwork_web/home_controller.rb -------------------------------------------------------------------------------- /app/helpers/clockwork_web/home_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/clockwork_web/HEAD/app/helpers/clockwork_web/home_helper.rb -------------------------------------------------------------------------------- /app/views/clockwork_web/home/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/clockwork_web/HEAD/app/views/clockwork_web/home/index.html.erb -------------------------------------------------------------------------------- /clockwork_web.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/clockwork_web/HEAD/clockwork_web.gemspec -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/clockwork_web/HEAD/config/routes.rb -------------------------------------------------------------------------------- /lib/clockwork_web.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/clockwork_web/HEAD/lib/clockwork_web.rb -------------------------------------------------------------------------------- /lib/clockwork_web/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/clockwork_web/HEAD/lib/clockwork_web/engine.rb -------------------------------------------------------------------------------- /lib/clockwork_web/version.rb: -------------------------------------------------------------------------------- 1 | module ClockworkWeb 2 | VERSION = "0.4.0" 3 | end 4 | -------------------------------------------------------------------------------- /test/controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/clockwork_web/HEAD/test/controller_test.rb -------------------------------------------------------------------------------- /test/internal/app/assets/config/manifest.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/internal/clock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/clockwork_web/HEAD/test/internal/clock.rb -------------------------------------------------------------------------------- /test/internal/config/routes.rb: -------------------------------------------------------------------------------- 1 | Rails.application.routes.draw do 2 | mount ClockworkWeb::Engine, at: "/" 3 | end 4 | -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/clockwork_web/HEAD/test/test_helper.rb --------------------------------------------------------------------------------