apparel_monster 1.0.2

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.
Files changed (4) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +21 -0
  3. data/README.md +29 -0
  4. metadata +68 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: ea90cda4e22a2d9a377991e1212a33ecbfdbadb9cb33517fbebd733d947ccbb7
4
+ data.tar.gz: 11dcb253d67f96f076747c701c86f0ac9a86e7745eaf1b129bb6de646685fa3c
5
+ SHA512:
6
+ metadata.gz: 541c2ccf8113272fb07a7854877900b593b20ec9815b20fd6c5fdfba2d89ae11e5b4c0f37d2c23414a8d43b79fc3d75e53fbea7aed1dbf5610d56b5516eeaedc
7
+ data.tar.gz: 1e84617dd603f663c8e650cf56142505680c275286288eb1a0605f841e8812bd80bee91400a92b4f5da792800b8e373f37fa1e7c24ff7761cc54378b9c2ebd42
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Michael Lugassy
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 all
13
+ 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 THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # apparel_monster
2
+
3
+ An alias for [`apparel-monster`](https://rubygems.org/gems/apparel-monster).
4
+ It contains no code — installing it installs the real gem.
5
+
6
+ ```bash
7
+ gem install apparel_monster # same as: gem install apparel-monster
8
+ ```
9
+
10
+ ```ruby
11
+ require "apparel_monster" # unchanged
12
+
13
+ store = ApparelMonster::Client.new
14
+ store.search("denim shirt")
15
+ ```
16
+
17
+ ## Why both names exist
18
+
19
+ npm allows hyphens, and PyPI normalises `-` and `_` to the same name under
20
+ PEP 503, so `apparel-monster` is reachable under either spelling in both
21
+ ecosystems. RubyGems does not normalise: `apparel-monster` and
22
+ `apparel_monster` are two unrelated gems there, and only the hyphenated one was
23
+ published — while the underscore is Ruby's own convention for file and constant
24
+ names, and so the spelling people try first.
25
+
26
+ The version is pinned exactly to the gem it aliases, so the two names cannot
27
+ drift apart.
28
+
29
+ Documentation: <https://apparel.monster/developers>
metadata ADDED
@@ -0,0 +1,68 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: apparel_monster
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.2
5
+ platform: ruby
6
+ authors:
7
+ - Michael Lugassy
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2026-09-20 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: apparel-monster
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '='
18
+ - !ruby/object:Gem::Version
19
+ version: 1.0.2
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '='
25
+ - !ruby/object:Gem::Version
26
+ version: 1.0.2
27
+ description: |
28
+ Installs apparel-monster, the SDK and CLI for the Apparel Monster agent
29
+ commerce API. This gem exists so that the underscored spelling resolves to
30
+ the same package as the hyphenated one; it contains no code of its own.
31
+ Require it as `require "apparel_monster"`, exactly as before.
32
+ email:
33
+ executables: []
34
+ extensions: []
35
+ extra_rdoc_files: []
36
+ files:
37
+ - LICENSE
38
+ - README.md
39
+ homepage: https://apparel.monster/developers
40
+ licenses:
41
+ - MIT
42
+ metadata:
43
+ homepage_uri: https://apparel.monster/developers
44
+ source_code_uri: https://github.com/mluggy/apparel-monster-dev
45
+ bug_tracker_uri: https://github.com/mluggy/apparel-monster-dev/issues
46
+ changelog_uri: https://github.com/mluggy/apparel-monster-dev/releases
47
+ documentation_uri: https://apparel.monster/developers
48
+ rubygems_mfa_required: 'true'
49
+ post_install_message:
50
+ rdoc_options: []
51
+ require_paths:
52
+ - lib
53
+ required_ruby_version: !ruby/object:Gem::Requirement
54
+ requirements:
55
+ - - ">="
56
+ - !ruby/object:Gem::Version
57
+ version: 2.7.0
58
+ required_rubygems_version: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - ">="
61
+ - !ruby/object:Gem::Version
62
+ version: '0'
63
+ requirements: []
64
+ rubygems_version: 3.0.3.1
65
+ signing_key:
66
+ specification_version: 4
67
+ summary: Alias for the apparel-monster gem.
68
+ test_files: []