rails_toastify 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: 15bb2821e582dbb096ce2cece0f0f40dab03f2596adaf264eefe930243690d7c
4
+ data.tar.gz: cb87d2f3bb44533969bc8933a625a5cb210aa80d738cdb83e7f82e756318f03a
5
+ SHA512:
6
+ metadata.gz: 2868b8b9771a26dca581dab27df5eb483e4773350a8c38fdd30deaecabdc8bac4657c45468d32358e8c83ee3afc85a0854d239bf7ee876076254217e999233a8
7
+ data.tar.gz: 22db02499c2e62c068dd0b7a12e804092225708305b9c1c791c1af8b63ee279c1db62b4a99562896c4431764f2dfc8cbc8a1a1aa37cbd1215e3235c3356caf6a
data/README.md ADDED
@@ -0,0 +1,31 @@
1
+ # RailsToastify
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/rails_toastify`. 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]/rails_toastify.
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,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module RailsToastify
4
+ VERSION = "0.1.0"
5
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "rails_toastify/version"
4
+
5
+ module RailsToastify
6
+ class Error < StandardError; end
7
+ # Your code goes here...
8
+ end
@@ -0,0 +1,39 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/rails_toastify/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "rails_toastify"
7
+ spec.version = RailsToastify::VERSION
8
+ spec.authors = ["Elton Santos"]
9
+ spec.email = ["eltonaxl@hotmail.com"]
10
+ spec.summary = "🎉 Rails Toastify allows you to add notifications to your app with ease."
11
+ spec.description = "🎉 Rails Toastify allows you to add notifications to your app with ease. Pay Attention: this gem still is in development. Please CONTRIBUTE"
12
+ spec.homepage = "https://github.com/eltonsantos/rails_toastify"
13
+ spec.required_ruby_version = ">= 2.6.0"
14
+ spec.license = "MIT"
15
+
16
+ spec.metadata = {
17
+ "homepage_uri" => spec.homepage,
18
+ "source_code_uri" => "https://github.com/eltonsantos/rails_toastify",
19
+ "changelog_uri" => "https://github.com/eltonsantos/rails_toastify/blob/master/CHANGELOG.md",
20
+ }
21
+
22
+ # Specify which files should be added to the gem when it is released.
23
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
24
+ spec.files = Dir.chdir(__dir__) do
25
+ `git ls-files -z`.split("\x0").reject do |f|
26
+ (File.expand_path(f) == __FILE__) ||
27
+ f.start_with?(*%w[bin/ test/ spec/ features/ .git appveyor Gemfile])
28
+ end
29
+ end
30
+ spec.bindir = "exe"
31
+ spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
32
+ spec.require_paths = ["lib"]
33
+
34
+ # Uncomment to register a new dependency of your gem
35
+ # spec.add_dependency "example-gem", "~> 1.0"
36
+
37
+ # For more information and examples about making a new gem, check out our
38
+ # guide at: https://bundler.io/guides/creating_gem.html
39
+ end
@@ -0,0 +1,4 @@
1
+ module RailsToastify
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,54 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rails_toastify
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Elton Santos
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2024-06-23 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: "\U0001F389 Rails Toastify allows you to add notifications to your app
14
+ with ease. Pay Attention: this gem still is in development. Please CONTRIBUTE"
15
+ email:
16
+ - eltonaxl@hotmail.com
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - README.md
22
+ - Rakefile
23
+ - lib/rails_toastify.rb
24
+ - lib/rails_toastify/version.rb
25
+ - rails_toastify.gemspec
26
+ - sig/rails_toastify.rbs
27
+ homepage: https://github.com/eltonsantos/rails_toastify
28
+ licenses:
29
+ - MIT
30
+ metadata:
31
+ homepage_uri: https://github.com/eltonsantos/rails_toastify
32
+ source_code_uri: https://github.com/eltonsantos/rails_toastify
33
+ changelog_uri: https://github.com/eltonsantos/rails_toastify/blob/master/CHANGELOG.md
34
+ post_install_message:
35
+ rdoc_options: []
36
+ require_paths:
37
+ - lib
38
+ required_ruby_version: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: 2.6.0
43
+ required_rubygems_version: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ requirements: []
49
+ rubygems_version: 3.5.3
50
+ signing_key:
51
+ specification_version: 4
52
+ summary: "\U0001F389 Rails Toastify allows you to add notifications to your app with
53
+ ease."
54
+ test_files: []