hard_notifier 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: e7acbab0884cf6da14d997b9ae003aebe13c876b4d6505ebe4ddb10f55385aa4
4
+ data.tar.gz: 544ce5ca0370090015d376db88dc0b7383bf099a51613420438bad46c600a2ec
5
+ SHA512:
6
+ metadata.gz: ec7a19410412a195aa2c3c6260e57cfcc1afe971b53b6a7babcf824b4866464f6cc6eb2162bacd58a14fc9eac8b17d3ae6bd7eb03611feea5a911ce78b549b3e
7
+ data.tar.gz: 2c0ea4fb78db5f823e74016076b3f0d28762a16a4b9a7ea700f82f30e44bf44926294d7cc53fb476dd8db3a4b24aff1e8e621ae7ebaf6a63a7d8c7be70b422b1
data/README.md ADDED
@@ -0,0 +1,31 @@
1
+ # HardNotifier
2
+
3
+ TODO: Delete this and the text below, and describe your gem
4
+
5
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/hard_notifier`. To experiment with that code, run `bin/console` for an interactive prompt.
6
+
7
+ ## Installation
8
+
9
+ TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG` with your gem name right after releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section with instructions to install your gem from git if you don't plan to release to RubyGems.org.
10
+
11
+ Install the gem and add to the application's Gemfile by executing:
12
+
13
+ $ bundle add UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
14
+
15
+ If bundler is not being used to manage dependencies, install the gem by executing:
16
+
17
+ $ gem install UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Development
24
+
25
+ After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
26
+
27
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
28
+
29
+ ## Contributing
30
+
31
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/hard_notifier.
data/Rakefile ADDED
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ task default: %i[]
@@ -0,0 +1,29 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/hard_notifier/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "hard_notifier"
7
+ spec.version = HardNotifier::VERSION
8
+ spec.authors = ["Vincenzo"]
9
+ spec.email = ["infinity.scum@gmail.com"]
10
+
11
+ spec.summary = "New Era Notifier"
12
+ spec.description = "New Era Notifier"
13
+ spec.homepage = "https://github.com/nononito/hard_notifier"
14
+ spec.required_ruby_version = ">= 2.6.0"
15
+
16
+ spec.metadata["homepage_uri"] = spec.homepage
17
+ spec.metadata["source_code_uri"] = "https://github.com/nononito/hard_notifier"
18
+ spec.metadata["changelog_uri"] = "https://github.com/nononito/hard_notifier"
19
+
20
+ spec.files = Dir.chdir(__dir__) do
21
+ `git ls-files -z`.split("\x0").reject do |f|
22
+ (File.expand_path(f) == __FILE__) ||
23
+ f.start_with?(*%w[bin/ test/ spec/ features/ .git appveyor Gemfile])
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
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module HardNotifier
4
+ VERSION = "0.1.0"
5
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "hard_notifier/version"
4
+
5
+ module HardNotifier
6
+ class Error < StandardError; end
7
+ # Your code goes here...
8
+ end
@@ -0,0 +1,4 @@
1
+ module HardNotifier
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,51 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: hard_notifier
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Vincenzo
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2024-02-27 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: New Era Notifier
14
+ email:
15
+ - infinity.scum@gmail.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - README.md
21
+ - Rakefile
22
+ - hard_notifier.gemspec
23
+ - lib/hard_notifier.rb
24
+ - lib/hard_notifier/version.rb
25
+ - sig/hard_notifier.rbs
26
+ homepage: https://github.com/nononito/hard_notifier
27
+ licenses: []
28
+ metadata:
29
+ homepage_uri: https://github.com/nononito/hard_notifier
30
+ source_code_uri: https://github.com/nononito/hard_notifier
31
+ changelog_uri: https://github.com/nononito/hard_notifier
32
+ post_install_message:
33
+ rdoc_options: []
34
+ require_paths:
35
+ - lib
36
+ required_ruby_version: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: 2.6.0
41
+ required_rubygems_version: !ruby/object:Gem::Requirement
42
+ requirements:
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ requirements: []
47
+ rubygems_version: 3.5.6
48
+ signing_key:
49
+ specification_version: 4
50
+ summary: New Era Notifier
51
+ test_files: []