march_1_ruby 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: fdf9c3317899e3f3922f5bc7c9a77e8500bcc6f9ba464136ec5c37f59603721d
4
+ data.tar.gz: af63a6fe8fc11f3b19d48d8c7699f87631fe32936741bc35fdd9f188eb1d7a30
5
+ SHA512:
6
+ metadata.gz: c32bd57d588962342d8dc157f9c0e947d0da1967f9b2e041460e74cb49fdca967aefde48f3e240050c65d4285c3ca6ba997671aaaf73401d1af12de7736ebdaa
7
+ data.tar.gz: 8cfdc559ee59afadadf72617e00d99405c61079108476bb181f41ae0ac559dbb09adf48ac3d16cd990ca1099741e0acc834599a56a9ca7624eec6a5f92cf6e3f
data/README.md ADDED
@@ -0,0 +1,35 @@
1
+ # March1Ruby
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/march_1_ruby`. 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]/march_1_ruby.
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 March1Ruby
4
+ VERSION = "0.1.0"
5
+ end
@@ -0,0 +1,32 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "march_1_ruby/version"
4
+ require_relative "march_1_ruby/YonomaClient"
5
+ require_relative "march_1_ruby/Contacts"
6
+ require_relative "march_1_ruby/Groups"
7
+ require_relative "march_1_ruby/Tags"
8
+
9
+ module March1Ruby
10
+ class Error < StandardError; end
11
+ # Your code goes here...
12
+
13
+ class Client
14
+ attr_reader :yonoma_client
15
+
16
+ def initialize(api_key)
17
+ @yonoma_client = YonomaClient.new(api_key)
18
+ end
19
+
20
+ def contacts
21
+ Contacts.new(@yonoma_client)
22
+ end
23
+
24
+ def list
25
+ Lists.new(@yonoma_client)
26
+ end
27
+
28
+ def tags
29
+ Tags.new(@yonoma_client)
30
+ end
31
+ end
32
+ end
@@ -0,0 +1,4 @@
1
+ module March1Ruby
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,48 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: march_1_ruby
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 Best Gem Ever for used.
13
+ email:
14
+ - karthick@twinarcus.com
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - README.md
20
+ - Rakefile
21
+ - lib/march_1_ruby.rb
22
+ - lib/march_1_ruby/version.rb
23
+ - sig/march_1_ruby.rbs
24
+ homepage: https://github.com/karthickTwinArcus/march1
25
+ licenses: []
26
+ metadata:
27
+ allowed_push_host: https://rubygems.org/
28
+ homepage_uri: https://github.com/karthickTwinArcus/march1
29
+ source_code_uri: https://github.com/karthickTwinArcus/march1
30
+ changelog_uri: https://github.com/karthickTwinArcus/march1
31
+ rdoc_options: []
32
+ require_paths:
33
+ - lib
34
+ required_ruby_version: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ">="
37
+ - !ruby/object:Gem::Version
38
+ version: 3.1.0
39
+ required_rubygems_version: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: '0'
44
+ requirements: []
45
+ rubygems_version: 3.6.5
46
+ specification_version: 4
47
+ summary: A Best Gem Ever.
48
+ test_files: []