spyglasses 1.0.0 → 1.0.1
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/CHANGELOG.md +8 -3
- data/Gemfile.lock +1 -1
- data/README.md +1 -1
- data/lib/spyglasses/version.rb +1 -1
- data/spyglasses.gemspec +43 -0
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9c17daf9d91be6e696d95a82d8d55189052aa68f7d7dc01531ebecbb9fd2e924
|
4
|
+
data.tar.gz: f8c66528f3fe86d414d6070544f37af1332f7a92a009eb4744c19edf84fbb309
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 45eb83cc190e3b3ff8fd6851218b5d69425d8bcc8673b8f323e5d2a16ab208abf0602608eac71e7e1ab3dbb40cac300067723edc3517ee3f3b362a90ec8f0293
|
7
|
+
data.tar.gz: 1cde873159cc7e46aeef4a7a15e7f72ee595886fc8eba4c501174af8b1a95431b88a064320b0efdc37a494e4b79c9286aa4cb2a5a15899568f8f7d48f072f32b
|
data/CHANGELOG.md
CHANGED
@@ -5,9 +5,13 @@ All notable changes to this project will be documented in this file.
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
7
7
|
|
8
|
-
## [
|
8
|
+
## [1.0.1] - 2025-06-23
|
9
9
|
|
10
|
-
|
10
|
+
### Changed
|
11
|
+
- Updated documentation links in README to point to correct docs location (https://www.spyglasses.io/docs/platforms/ruby)
|
12
|
+
- Updated gem author attribution to Orchestra AI, Inc.
|
13
|
+
|
14
|
+
## [1.0.0] - 2025-06-23
|
11
15
|
|
12
16
|
### Added
|
13
17
|
- Initial release of Spyglasses Ruby gem
|
@@ -37,5 +41,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
37
41
|
- Smart path exclusions for static assets
|
38
42
|
- Minimal request overhead (<1ms typical)
|
39
43
|
|
40
|
-
[Unreleased]: https://github.com/spyglasses/spyglasses-ruby/compare/v1.0.
|
44
|
+
[Unreleased]: https://github.com/spyglasses/spyglasses-ruby/compare/v1.0.1...HEAD
|
45
|
+
[1.0.1]: https://github.com/spyglasses/spyglasses-ruby/compare/v1.0.0...v1.0.1
|
41
46
|
[1.0.0]: https://github.com/spyglasses/spyglasses-ruby/releases/tag/v1.0.0
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -331,5 +331,5 @@ The gem is available as open source under the terms of the [MIT License](https:/
|
|
331
331
|
## Support
|
332
332
|
|
333
333
|
- 📧 Email: support@spyglasses.io
|
334
|
-
- 📖 Documentation: https://
|
334
|
+
- 📖 Documentation: https://www.spyglasses.io/docs/platforms/ruby
|
335
335
|
- 🐛 Issues: https://github.com/spyglasses/spyglasses-ruby/issues
|
data/lib/spyglasses/version.rb
CHANGED
data/spyglasses.gemspec
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
require_relative 'lib/spyglasses/version'
|
2
|
+
|
3
|
+
Gem::Specification.new do |spec|
|
4
|
+
spec.name = 'spyglasses'
|
5
|
+
spec.version = Spyglasses::VERSION
|
6
|
+
spec.authors = ['Orchestra AI, Inc.']
|
7
|
+
spec.email = ['support@spyglasses.io']
|
8
|
+
|
9
|
+
spec.summary = 'AI Agent Detection and Management for Ruby web applications'
|
10
|
+
spec.description = 'Spyglasses provides comprehensive AI agent detection and management capabilities for Ruby web applications, including Rails, Sinatra, and other Rack-based frameworks.'
|
11
|
+
spec.homepage = 'https://www.spyglasses.io'
|
12
|
+
spec.license = 'MIT'
|
13
|
+
spec.required_ruby_version = '>= 2.7.0'
|
14
|
+
|
15
|
+
spec.metadata['homepage_uri'] = spec.homepage
|
16
|
+
spec.metadata['source_code_uri'] = 'https://github.com/spyglasses/spyglasses-ruby'
|
17
|
+
spec.metadata['documentation_uri'] = 'https://www.spyglasses.io/docs/platforms/ruby'
|
18
|
+
spec.metadata['changelog_uri'] = 'https://github.com/spyglasses/spyglasses-ruby/blob/main/CHANGELOG.md'
|
19
|
+
|
20
|
+
# Specify which files should be added to the gem when it is released.
|
21
|
+
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
22
|
+
`git ls-files -z`.split("\x0").reject do |f|
|
23
|
+
(f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
|
24
|
+
end
|
25
|
+
end
|
26
|
+
spec.bindir = 'exe'
|
27
|
+
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
28
|
+
spec.require_paths = ['lib']
|
29
|
+
|
30
|
+
# Runtime dependencies
|
31
|
+
spec.add_dependency 'rack', '>= 2.0'
|
32
|
+
spec.add_dependency 'json', '>= 2.0'
|
33
|
+
|
34
|
+
# Development dependencies
|
35
|
+
spec.add_development_dependency 'bundler', '>= 2.0'
|
36
|
+
spec.add_development_dependency 'rake', '>= 13.0'
|
37
|
+
spec.add_development_dependency 'rspec', '~> 3.0'
|
38
|
+
spec.add_development_dependency 'webmock', '~> 3.0'
|
39
|
+
spec.add_development_dependency 'rack-test', '~> 2.0'
|
40
|
+
spec.add_development_dependency 'rubocop', '~> 1.0'
|
41
|
+
spec.add_development_dependency 'simplecov', '~> 0.21'
|
42
|
+
spec.add_development_dependency 'yard', '~> 0.9'
|
43
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: spyglasses
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Orchestra AI, Inc.
|
@@ -173,13 +173,14 @@ files:
|
|
173
173
|
- lib/spyglasses/middleware.rb
|
174
174
|
- lib/spyglasses/types.rb
|
175
175
|
- lib/spyglasses/version.rb
|
176
|
+
- spyglasses.gemspec
|
176
177
|
homepage: https://www.spyglasses.io
|
177
178
|
licenses:
|
178
179
|
- MIT
|
179
180
|
metadata:
|
180
181
|
homepage_uri: https://www.spyglasses.io
|
181
182
|
source_code_uri: https://github.com/spyglasses/spyglasses-ruby
|
182
|
-
documentation_uri: https://
|
183
|
+
documentation_uri: https://www.spyglasses.io/docs/platforms/ruby
|
183
184
|
changelog_uri: https://github.com/spyglasses/spyglasses-ruby/blob/main/CHANGELOG.md
|
184
185
|
post_install_message:
|
185
186
|
rdoc_options: []
|