ruby_email_marketing 0.1.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: c169879154551ddee24e1dae5e609279909ea3c28874a5ecdc397dafeacbb3ef
4
+ data.tar.gz: 35c2d504c046a86a15e7273c84cf3dd5436f95fa1008a4a6ee91f248031837ac
5
+ SHA512:
6
+ metadata.gz: d1ddc43cfa414c3cdfe38dd278cfa55cce83fc9b7c610ed5a9db211d71db3915c91e7b6cc692ee9a0065ae7994442aa1b130464089a6364061ec4eabc5a6a109
7
+ data.tar.gz: 65893c5039418b96554e04234e7ed9c40b75e6ca13d8934aef9196a9beec54fa9b85e4058ddc35f6f91121657040f974fb6512947e5d571ca355f127302f2f83
data/README.md ADDED
@@ -0,0 +1,35 @@
1
+ # RubyEmailMarketing
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/ruby_email_marketing`. 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
+ ```bash
14
+ bundle add UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
15
+ ```
16
+
17
+ If bundler is not being used to manage dependencies, install the gem by executing:
18
+
19
+ ```bash
20
+ gem install UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
21
+ ```
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ 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.
30
+
31
+ 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).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/ruby_email_marketing.
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 RubyEmailMarketing
4
+ VERSION = "0.1.0"
5
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "ruby_email_marketing/version"
4
+
5
+ module RubyEmailMarketing
6
+ class Error < StandardError; end
7
+ # Your code goes here...
8
+ end
@@ -0,0 +1,4 @@
1
+ module RubyEmailMarketing
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: ruby_email_marketing
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - karthickTwinArcus
8
+ bindir: exe
9
+ cert_chain: []
10
+ date: 2025-03-01 00:00:00.000000000 Z
11
+ dependencies: []
12
+ description: A Ruby gem for managing and sending marketing emails. This gem provides
13
+ an easy-to-use interface to create email campaigns, handle mailing lists, and track
14
+ metrics such as open rates and clicks. Ideal for small businesses and individuals
15
+ who need a straightforward, code-driven solution for their email marketing needs.
16
+ email:
17
+ - karthick@twinarcus.com
18
+ executables: []
19
+ extensions: []
20
+ extra_rdoc_files: []
21
+ files:
22
+ - README.md
23
+ - Rakefile
24
+ - lib/ruby_email_marketing.rb
25
+ - lib/ruby_email_marketing/version.rb
26
+ - sig/ruby_email_marketing.rbs
27
+ homepage: https://github.com/karthickTwinArcus/ruby_email_marketing
28
+ licenses: []
29
+ metadata:
30
+ allowed_push_host: https://rubygems.org
31
+ homepage_uri: https://github.com/karthickTwinArcus/ruby_email_marketing
32
+ source_code_uri: https://github.com/karthickTwinArcus/ruby_email_marketing
33
+ changelog_uri: https://github.com/karthickTwinArcus/ruby_email_marketing
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: 3.6.5
49
+ specification_version: 4
50
+ summary: A Ruby gem for managing and sending marketing emails.
51
+ test_files: []