shimmer 0.0.1 → 0.0.7

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.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shimmer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jens Ravens
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-12-21 00:00:00.000000000 Z
11
+ date: 2021-12-28 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email:
@@ -17,17 +17,48 @@ executables: []
17
17
  extensions: []
18
18
  extra_rdoc_files: []
19
19
  files:
20
+ - ".editorconfig"
21
+ - ".eslintrc.js"
22
+ - ".prettierrc"
23
+ - ".ruby-version"
24
+ - ".solargraph.yml"
25
+ - ".vscode/settings.json"
20
26
  - CHANGELOG.md
21
27
  - CODE_OF_CONDUCT.md
22
28
  - Gemfile
29
+ - Gemfile.lock
23
30
  - LICENSE.txt
24
31
  - README.md
25
32
  - Rakefile
26
33
  - bin/console
27
34
  - bin/setup
28
35
  - lib/shimmer.rb
36
+ - lib/shimmer/controllers/files_controller.rb
37
+ - lib/shimmer/controllers/sitemaps_controller.rb
38
+ - lib/shimmer/jobs/sitemap_job.rb
39
+ - lib/shimmer/middlewares/cloudflare.rb
40
+ - lib/shimmer/railtie.rb
41
+ - lib/shimmer/tasks/db.rake
42
+ - lib/shimmer/tasks/lint.rake
43
+ - lib/shimmer/utils/file_helper.rb
44
+ - lib/shimmer/utils/file_proxy.rb
45
+ - lib/shimmer/utils/localizable.rb
46
+ - lib/shimmer/utils/remote_navigation.rb
47
+ - lib/shimmer/utils/sitemap_adapter.rb
29
48
  - lib/shimmer/version.rb
30
- - shimmer.gemspec
49
+ - package.json
50
+ - rollup.config.js
51
+ - src/controllers/remote-navigation.ts
52
+ - src/index.ts
53
+ - src/locale.ts
54
+ - src/modal.ts
55
+ - src/popover.ts
56
+ - src/serviceworker.ts
57
+ - src/touch.ts
58
+ - src/util.ts
59
+ - tsconfig.json
60
+ - typings.d.ts
61
+ - yarn.lock
31
62
  homepage: https://github.com/nerdgeschoss/shimmer
32
63
  licenses:
33
64
  - MIT
@@ -49,7 +80,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
49
80
  - !ruby/object:Gem::Version
50
81
  version: '0'
51
82
  requirements: []
52
- rubygems_version: 3.1.6
83
+ rubygems_version: 3.2.32
53
84
  signing_key:
54
85
  specification_version: 4
55
86
  summary: Shimmer brings all the bells and whistles of a hotwired application, right
data/shimmer.gemspec DELETED
@@ -1,35 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require_relative "lib/shimmer/version"
4
-
5
- Gem::Specification.new do |spec|
6
- spec.name = "shimmer"
7
- spec.version = Shimmer::VERSION
8
- spec.authors = ["Jens Ravens"]
9
- spec.email = ["jens@nerdgeschoss.de"]
10
-
11
- spec.summary = "Shimmer brings all the bells and whistles of a hotwired application, right from the start."
12
- spec.homepage = "https://github.com/nerdgeschoss/shimmer"
13
- spec.license = "MIT"
14
- spec.required_ruby_version = ">= 2.6.0"
15
-
16
- spec.metadata["homepage_uri"] = spec.homepage
17
- spec.metadata["source_code_uri"] = spec.homepage
18
-
19
- # Specify which files should be added to the gem when it is released.
20
- # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
21
- spec.files = Dir.chdir(File.expand_path(__dir__)) do
22
- `git ls-files -z`.split("\x0").reject do |f|
23
- (f == __FILE__) || f.match(%r{\A(?:(?:test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
24
- end
25
- end
26
- spec.bindir = "exe"
27
- spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
28
- spec.require_paths = ["lib"]
29
-
30
- # Uncomment to register a new dependency of your gem
31
- # spec.add_dependency "example-gem", "~> 1.0"
32
-
33
- # For more information and examples about making a new gem, checkout our
34
- # guide at: https://bundler.io/guides/creating_gem.html
35
- end