shopify_toolkit 0.1.0.pre

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: cece3645d02f939f0c4e534edd97ad5150843e85c5c54f639f07ddd480921105
4
+ data.tar.gz: 7e2e8a0bca62733fe38415178e08dedbf01e62455902d0c82044d25f46cdfab4
5
+ SHA512:
6
+ metadata.gz: 0042f15676cbc63112d7c7b68ef249a657e37c6a5dce70e4d496479bc8c1146f5ca2240210162a57ef07038b25fbbe01a59226632d28e366546e4a35ef8b539e
7
+ data.tar.gz: 9927b5dbcb3c072c263b81fef3a6d7775ecf6fbed67fca668cccb8a8116002c2e42c522b06469608cdce7a7d7ab86a69303765329424e1c5b15c44c8180dea6b
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2025-02-28
4
+
5
+ - Initial release
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2025 Nebulab
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,39 @@
1
+ # ShopifyToolkit
2
+
3
+ A toolkit for working with Custom Shopify Apps built on Rails.
4
+
5
+ ## Features/Roadmap
6
+
7
+ - [ ] Metafield/Metaobject migrations (just like ActiveRecord migrations, but for Shopify!)
8
+ - [ ] Shopify CSV Import/Export tools
9
+ - [ ] GraphQL Admin API code generation (syntax checking, etc)
10
+ - [ ] GraphQL Admin API client with built-in rate limiting
11
+ - [ ] GraphQL Admin API client with built-in caching
12
+ - [ ] GraphQL Admin API client with built-in error handling
13
+ - [ ] GraphQL Admin API client with built-in logging
14
+
15
+ ## Installation
16
+
17
+ Install the gem and add to the application's Gemfile by executing:
18
+
19
+ ```bash
20
+ bundle add shopify_toolkit
21
+ ```
22
+
23
+ ## Usage
24
+
25
+ TODO
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. 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/nebulab/shopify_toolkit.
36
+
37
+ ## License
38
+
39
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "minitest/test_task"
5
+
6
+ Minitest::TestTask.create
7
+
8
+ task default: :test
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module ShopifyToolkit
4
+ VERSION = "0.1.0.pre"
5
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "shopify_toolkit/version"
4
+
5
+ module ShopifyToolkit
6
+ class Error < StandardError; end
7
+ # Your code goes here...
8
+ end
@@ -0,0 +1,4 @@
1
+ module ShopifyToolkit
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,52 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: shopify_toolkit
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0.pre
5
+ platform: ruby
6
+ authors:
7
+ - Elia Schito
8
+ - Nebulab Team
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2025-03-14 00:00:00.000000000 Z
12
+ dependencies: []
13
+ email:
14
+ - elia@schito.me
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - CHANGELOG.md
20
+ - LICENSE.txt
21
+ - README.md
22
+ - Rakefile
23
+ - lib/shopify_toolkit.rb
24
+ - lib/shopify_toolkit/version.rb
25
+ - sig/shopify_toolkit.rbs
26
+ homepage: https://github.com/nebulab/shopify_toolkit?tab=readme-ov-file#readme
27
+ licenses:
28
+ - MIT
29
+ metadata:
30
+ allowed_push_host: https://rubygems.org
31
+ bug_tracker_uri: https://github.com/nebulab/shopify_toolkit/issues
32
+ homepage_uri: https://github.com/nebulab/shopify_toolkit?tab=readme-ov-file#readme
33
+ source_code_uri: https://github.com/nebulab/shopify_toolkit
34
+ changelog_uri: https://github.com/nebulab/shopify_toolkit/releases
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: 3.1.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.6.3
50
+ specification_version: 4
51
+ summary: A collection of tools for dealing with Shopify apps.
52
+ test_files: []