cruise 0.0.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: e6c28ff18160ebdea05cff957fa6d2c3933a74776541a241b194b36c4ec382d1
4
+ data.tar.gz: 0e963d79323ee6ea95684080d0194fad512009f3429664ffa2c6d32aa3a0d0ee
5
+ SHA512:
6
+ metadata.gz: 9d46bd683e1ddff54bce8693b613c2d589f968bc6b0d1d87359d1eb090a5d4f05109abfb9d8a8eb9c11cdaf4d1bfe7abd5fe73801a3b68c07ee6881f1a983e7b
7
+ data.tar.gz: f135cf89f25790b30c507949bc2d9dfb27d6dcbe12eeefc710be9165a5601e258abd33771346f66f7d69b28b9d2ec689214488ea46d0d4aec639ee3ed5489e69
data/Rakefile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "minitest/test_task"
5
+
6
+ Minitest::TestTask.create
7
+
8
+ require "rubocop/rake_task"
9
+
10
+ RuboCop::RakeTask.new
11
+
12
+ task default: %i[test rubocop]
data/cruise.gemspec ADDED
@@ -0,0 +1,32 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/cruise/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "cruise"
7
+ spec.version = Cruise::VERSION
8
+ spec.authors = ["Marco Roth"]
9
+ spec.email = ["marco.roth@intergga.ch"]
10
+
11
+ spec.summary = "A fast, native file watcher for Ruby"
12
+ spec.description = "Cruise is a Rust-powered file system watcher with native OS integration. Uses FSEvents on macOS and inotify on Linux."
13
+ spec.homepage = "https://github.com/marcoroth/cruise"
14
+ spec.license = "MIT"
15
+
16
+ spec.required_ruby_version = ">= 3.1.0"
17
+ spec.require_paths = ["lib"]
18
+
19
+ spec.files = Dir[
20
+ "cruise.gemspec",
21
+ "LICENSE.txt",
22
+ "Rakefile",
23
+ "lib/**/*.rb"
24
+ ]
25
+
26
+ spec.metadata["allowed_push_host"] = "https://rubygems.org"
27
+ spec.metadata["rubygems_mfa_required"] = "true"
28
+ spec.metadata["homepage_uri"] = spec.homepage
29
+ spec.metadata["changelog_uri"] = "#{spec.homepage}/releases"
30
+ spec.metadata["source_code_uri"] = spec.homepage
31
+ spec.metadata["bug_tracker_uri"] = "#{spec.homepage}/issues"
32
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Cruise
4
+ VERSION = "0.0.0"
5
+ end
data/lib/cruise.rb ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "cruise/version"
4
+
5
+ module Cruise
6
+ class Error < StandardError; end
7
+ # Your code goes here...
8
+ end
metadata ADDED
@@ -0,0 +1,51 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: cruise
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Marco Roth
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies: []
12
+ description: Cruise is a Rust-powered file system watcher with native OS integration.
13
+ Uses FSEvents on macOS and inotify on Linux.
14
+ email:
15
+ - marco.roth@intergga.ch
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - Rakefile
21
+ - cruise.gemspec
22
+ - lib/cruise.rb
23
+ - lib/cruise/version.rb
24
+ homepage: https://github.com/marcoroth/cruise
25
+ licenses:
26
+ - MIT
27
+ metadata:
28
+ allowed_push_host: https://rubygems.org
29
+ rubygems_mfa_required: 'true'
30
+ homepage_uri: https://github.com/marcoroth/cruise
31
+ changelog_uri: https://github.com/marcoroth/cruise/releases
32
+ source_code_uri: https://github.com/marcoroth/cruise
33
+ bug_tracker_uri: https://github.com/marcoroth/cruise/issues
34
+ rdoc_options: []
35
+ require_paths:
36
+ - lib
37
+ required_ruby_version: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: 3.1.0
42
+ required_rubygems_version: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: '0'
47
+ requirements: []
48
+ rubygems_version: 4.0.3
49
+ specification_version: 4
50
+ summary: A fast, native file watcher for Ruby
51
+ test_files: []