promptly 0.1.0 → 0.1.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.
- checksums.yaml +4 -4
- data/lib/promptly/renderer.rb +1 -0
- data/lib/promptly/version.rb +1 -1
- data/promptly.gemspec +4 -4
- metadata +10 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 23c7ae8e3735bb7596001fa52d79a218068be2f0c03ddbb1a5fb8aa263035489
|
4
|
+
data.tar.gz: a44b67aa11f2ca04c26c6b291369d4f6c7c9044c5bd61ed8cfc921b01afd9df5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 382205e203447a670cb437b0a04a8ad42d137fe887d5690afe50bc3402f13be5b1ec0395e7d9450420aa60d7ae194283b3211dd1a417f620555733d2bb6d0859
|
7
|
+
data.tar.gz: 90b523fa6fa36447e72e4dfda79c500510448bd9f4ed1a9353b30bae7b024d8a13b4d753cdb522f56bdab59dcea40d0be532b7fd8afdc51c5caf6abe66cdba4a
|
data/lib/promptly/renderer.rb
CHANGED
data/lib/promptly/version.rb
CHANGED
data/promptly.gemspec
CHANGED
@@ -10,16 +10,16 @@ Gem::Specification.new do |spec|
|
|
10
10
|
|
11
11
|
spec.summary = "Opinionated Rails integration for reusable AI prompt templates"
|
12
12
|
spec.description = "Build maintainable, localized, and testable AI prompts using ERB or Liquid templates with Rails conventions"
|
13
|
-
spec.homepage = "https://github.com/
|
13
|
+
spec.homepage = "https://github.com/wilburhimself/promptly"
|
14
14
|
spec.license = "MIT"
|
15
15
|
spec.required_ruby_version = ">= 3.0.0"
|
16
16
|
|
17
17
|
spec.metadata["allowed_push_host"] = "https://rubygems.org"
|
18
18
|
|
19
19
|
spec.metadata["homepage_uri"] = spec.homepage
|
20
|
-
spec.metadata["source_code_uri"] = "https://github.com/
|
21
|
-
spec.metadata["changelog_uri"] = "https://github.com/
|
22
|
-
spec.metadata["documentation_uri"] = "https://github.com/
|
20
|
+
spec.metadata["source_code_uri"] = "https://github.com/wilburhimself/promptly"
|
21
|
+
spec.metadata["changelog_uri"] = "https://github.com/wilburhimself/promptly/blob/main/CHANGELOG.md"
|
22
|
+
spec.metadata["documentation_uri"] = "https://github.com/wilburhimself/promptly/blob/main/README.md"
|
23
23
|
|
24
24
|
# Specify which files should be added to the gem when it is released.
|
25
25
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
metadata
CHANGED
@@ -1,10 +1,11 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: promptly
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Wilbur Suero
|
8
|
+
autorequire:
|
8
9
|
bindir: exe
|
9
10
|
cert_chain: []
|
10
11
|
date: 2025-08-16 00:00:00.000000000 Z
|
@@ -85,15 +86,16 @@ files:
|
|
85
86
|
- lib/promptly/tasks/ai_prompts.rake
|
86
87
|
- lib/promptly/version.rb
|
87
88
|
- promptly.gemspec
|
88
|
-
homepage: https://github.com/
|
89
|
+
homepage: https://github.com/wilburhimself/promptly
|
89
90
|
licenses:
|
90
91
|
- MIT
|
91
92
|
metadata:
|
92
93
|
allowed_push_host: https://rubygems.org
|
93
|
-
homepage_uri: https://github.com/
|
94
|
-
source_code_uri: https://github.com/
|
95
|
-
changelog_uri: https://github.com/
|
96
|
-
documentation_uri: https://github.com/
|
94
|
+
homepage_uri: https://github.com/wilburhimself/promptly
|
95
|
+
source_code_uri: https://github.com/wilburhimself/promptly
|
96
|
+
changelog_uri: https://github.com/wilburhimself/promptly/blob/main/CHANGELOG.md
|
97
|
+
documentation_uri: https://github.com/wilburhimself/promptly/blob/main/README.md
|
98
|
+
post_install_message:
|
97
99
|
rdoc_options: []
|
98
100
|
require_paths:
|
99
101
|
- lib
|
@@ -108,7 +110,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
108
110
|
- !ruby/object:Gem::Version
|
109
111
|
version: '0'
|
110
112
|
requirements: []
|
111
|
-
rubygems_version: 3.
|
113
|
+
rubygems_version: 3.5.22
|
114
|
+
signing_key:
|
112
115
|
specification_version: 4
|
113
116
|
summary: Opinionated Rails integration for reusable AI prompt templates
|
114
117
|
test_files: []
|