-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ross Kaffenberger
committed
Jul 22, 2024
1 parent
e9d7bcf
commit 7b533eb
Showing
12 changed files
with
85 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
ignore: # default: [] | ||
- 'test/sample/node_modules/**/*' | ||
ruby_version: 2.7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
source 'https://rubygems.org' | ||
source "https://rubygems.org" | ||
|
||
gem 'rails', '~> 6.0.0' | ||
gem "rails", "~> 6.0.0" | ||
|
||
group :development, :test do | ||
gem 'guard', require: false | ||
gem 'guard-minitest', require: false | ||
gem 'pry' | ||
gem 'pry-byebug', platforms: [:mri] | ||
gem "guard", require: false | ||
gem "guard-minitest", require: false | ||
gem "pry" | ||
gem "pry-byebug", platforms: [:mri] | ||
end | ||
|
||
gemspec path: '../' | ||
gemspec path: "../" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
source 'https://rubygems.org' | ||
source "https://rubygems.org" | ||
|
||
gem 'rails', '~> 6.1.0' | ||
gem "rails", "~> 6.1.0" | ||
|
||
group :development, :test do | ||
gem 'guard', require: false | ||
gem 'guard-minitest', require: false | ||
gem 'pry' | ||
gem 'pry-byebug', platforms: [:mri] | ||
gem "guard", require: false | ||
gem "guard-minitest", require: false | ||
gem "pry" | ||
gem "pry-byebug", platforms: [:mri] | ||
end | ||
|
||
gemspec path: '../' | ||
gemspec path: "../" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
source 'https://rubygems.org' | ||
source "https://rubygems.org" | ||
|
||
gem 'rails', '~> 7.0.0' | ||
gem "rails", "~> 7.0.0" | ||
|
||
group :development, :test do | ||
gem 'guard', require: false | ||
gem 'guard-minitest', require: false | ||
gem 'pry' | ||
gem 'pry-byebug', platforms: [:mri] | ||
gem "guard", require: false | ||
gem "guard-minitest", require: false | ||
gem "pry" | ||
gem "pry-byebug", platforms: [:mri] | ||
end | ||
|
||
gemspec path: '../' | ||
gemspec path: "../" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
source 'https://rubygems.org' | ||
source "https://rubygems.org" | ||
|
||
gem 'rails', '~> 7.1.0' | ||
gem "rails", "~> 7.1.0" | ||
|
||
group :development, :test do | ||
gem 'guard', require: false | ||
gem 'guard-minitest', require: false | ||
gem 'pry' | ||
gem 'pry-byebug', platforms: [:mri] | ||
gem "guard", require: false | ||
gem "guard-minitest", require: false | ||
gem "pry" | ||
gem "pry-byebug", platforms: [:mri] | ||
end | ||
|
||
gemspec path: '../' | ||
gemspec path: "../" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,33 @@ | ||
# frozen_string_literal: true | ||
|
||
lib = File.expand_path('lib', __dir__) | ||
lib = File.expand_path("lib", __dir__) | ||
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) | ||
require 'serviceworker/rails/version' | ||
require "serviceworker/rails/version" | ||
|
||
Gem::Specification.new do |spec| | ||
spec.name = 'serviceworker-rails' | ||
spec.name = "serviceworker-rails" | ||
spec.version = ServiceWorker::Rails::VERSION | ||
spec.authors = ['Ross Kaffenberger'] | ||
spec.email = ['[email protected]'] | ||
spec.authors = ["Ross Kaffenberger"] | ||
spec.email = ["[email protected]"] | ||
|
||
spec.summary = 'ServiceWorker for Rails 5+' | ||
spec.description = 'Integrates ServiceWorker into the Rails asset pipeline.' | ||
spec.homepage = 'https://github.com/rossta/serviceworker-rails' | ||
spec.license = 'MIT' | ||
spec.summary = "ServiceWorker for Rails 5+" | ||
spec.description = "Integrates ServiceWorker into the Rails asset pipeline." | ||
spec.homepage = "https://github.com/rossta/serviceworker-rails" | ||
spec.license = "MIT" | ||
|
||
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } | ||
spec.bindir = 'exe' | ||
spec.bindir = "exe" | ||
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } | ||
spec.require_paths = ['lib'] | ||
spec.require_paths = ["lib"] | ||
|
||
spec.add_dependency 'railties', '>= 6.0' | ||
spec.add_dependency "railties", ">= 6.0" | ||
|
||
spec.add_development_dependency 'minitest', '~> 5.0' | ||
spec.add_development_dependency 'rack-test' | ||
spec.add_development_dependency 'rails' | ||
spec.add_development_dependency 'rake' | ||
spec.add_development_dependency 'simplecov' | ||
spec.add_development_dependency 'sprockets', '~> 3.0' | ||
spec.add_development_dependency 'sprockets-rails' | ||
spec.add_development_dependency 'standard' | ||
spec.add_development_dependency "minitest", "~> 5.0" | ||
spec.add_development_dependency "rack-test" | ||
spec.add_development_dependency "rails" | ||
spec.add_development_dependency "rake" | ||
spec.add_development_dependency "simplecov" | ||
spec.add_development_dependency "sprockets", "~> 3.0" | ||
spec.add_development_dependency "sprockets-rails" | ||
spec.add_development_dependency "standard" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters