kaggle 0.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 +7 -0
- data/.claude/settings.local.json +13 -0
- data/.ruby-version +1 -0
- data/CLAUDE.md +154 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/LICENSE +21 -0
- data/README.md +210 -0
- data/Rakefile +10 -0
- data/kaggle.gemspec +46 -0
- data/lib/kaggle/client.rb +255 -0
- data/lib/kaggle/constants.rb +23 -0
- data/lib/kaggle/version.rb +3 -0
- data/lib/kaggle.rb +19 -0
- data/plans/benchmarks.md +179 -0
- data/plans/cli_tool.md +35 -0
- data/plans/initial_prompt.md +11 -0
- data/plans/lists.md +77 -0
- data/plans/models.md +147 -0
- data/plans/roadmap.md +192 -0
- metadata +259 -0
data/plans/models.md
ADDED
@@ -0,0 +1,147 @@
|
|
1
|
+
# Models Support Plan
|
2
|
+
|
3
|
+
## Overview
|
4
|
+
Add comprehensive support for Kaggle Models API, including model discovery, downloading, and management capabilities.
|
5
|
+
|
6
|
+
## Current State
|
7
|
+
- No model functionality implemented yet
|
8
|
+
- Foundation established with dataset functionality that can be extended
|
9
|
+
|
10
|
+
## Planned Features
|
11
|
+
|
12
|
+
### Phase 1: Model Discovery
|
13
|
+
- [ ] **Model Listing**: Browse available models with pagination
|
14
|
+
- [ ] **Model Search**: Search models by name, description, tags
|
15
|
+
- [ ] **Model Filtering**: Filter by framework, task type, performance metrics
|
16
|
+
- [ ] **Model Details**: Get detailed information about specific models
|
17
|
+
- [ ] **Model Versions**: List and compare different versions of models
|
18
|
+
|
19
|
+
### Phase 2: Model Downloads
|
20
|
+
- [ ] **Model Download**: Download model files and artifacts
|
21
|
+
- [ ] **Version Management**: Download specific model versions
|
22
|
+
- [ ] **Batch Downloads**: Download multiple models or versions
|
23
|
+
- [ ] **Incremental Updates**: Download only changed files
|
24
|
+
- [ ] **Download Resume**: Resume interrupted model downloads
|
25
|
+
|
26
|
+
### Phase 3: Model Metadata
|
27
|
+
- [ ] **Performance Metrics**: Access model benchmarks and scores
|
28
|
+
- [ ] **Framework Details**: Model architecture and framework information
|
29
|
+
- [ ] **Usage Examples**: Access example code and documentation
|
30
|
+
- [ ] **Dependencies**: List required libraries and versions
|
31
|
+
- [ ] **License Information**: Model licensing and usage terms
|
32
|
+
|
33
|
+
### Phase 4: Model Management
|
34
|
+
- [ ] **Local Registry**: Track downloaded models locally
|
35
|
+
- [ ] **Version Tracking**: Monitor model updates and changes
|
36
|
+
- [ ] **Validation**: Verify model integrity and completeness
|
37
|
+
- [ ] **Cleanup Tools**: Remove outdated or unused models
|
38
|
+
- [ ] **Usage Analytics**: Track model usage and performance
|
39
|
+
|
40
|
+
## Technical Implementation
|
41
|
+
|
42
|
+
### New Classes
|
43
|
+
```ruby
|
44
|
+
# lib/kaggle/model.rb
|
45
|
+
class Kaggle::Model
|
46
|
+
attr_reader :id, :name, :framework, :task_type, :version
|
47
|
+
|
48
|
+
def initialize(attributes = {})
|
49
|
+
# Model initialization
|
50
|
+
end
|
51
|
+
|
52
|
+
def download(version: 'latest', path: nil)
|
53
|
+
# Download model files
|
54
|
+
end
|
55
|
+
|
56
|
+
def versions
|
57
|
+
# List available versions
|
58
|
+
end
|
59
|
+
|
60
|
+
def metadata
|
61
|
+
# Get detailed metadata
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
# lib/kaggle/model_client.rb
|
66
|
+
class Kaggle::ModelClient < Kaggle::Client
|
67
|
+
def list_models(options = {})
|
68
|
+
# List available models
|
69
|
+
end
|
70
|
+
|
71
|
+
def get_model(model_id, version: 'latest')
|
72
|
+
# Get specific model details
|
73
|
+
end
|
74
|
+
|
75
|
+
def download_model(model_id, options = {})
|
76
|
+
# Download model with options
|
77
|
+
end
|
78
|
+
end
|
79
|
+
```
|
80
|
+
|
81
|
+
### API Endpoints
|
82
|
+
```ruby
|
83
|
+
# lib/kaggle/constants.rb additions
|
84
|
+
MODEL_ENDPOINTS = {
|
85
|
+
list: '/models/list',
|
86
|
+
view: '/models/view',
|
87
|
+
download: '/models/download',
|
88
|
+
versions: '/models/versions'
|
89
|
+
}.freeze
|
90
|
+
```
|
91
|
+
|
92
|
+
### CLI Commands
|
93
|
+
```bash
|
94
|
+
# Model listing and discovery
|
95
|
+
kaggle models list
|
96
|
+
kaggle models search "text classification"
|
97
|
+
kaggle models show model-owner/model-name
|
98
|
+
|
99
|
+
# Model downloads
|
100
|
+
kaggle models download model-owner/model-name
|
101
|
+
kaggle models download model-owner/model-name --version v2.1
|
102
|
+
kaggle models download model-owner/model-name --path ./models
|
103
|
+
|
104
|
+
# Model management
|
105
|
+
kaggle models versions model-owner/model-name
|
106
|
+
kaggle models info model-owner/model-name
|
107
|
+
kaggle models validate ./models/model-name
|
108
|
+
```
|
109
|
+
|
110
|
+
### Caching Strategy
|
111
|
+
- Cache model metadata for offline browsing
|
112
|
+
- Smart caching of large model files
|
113
|
+
- Checksum validation for cached models
|
114
|
+
- Automatic cleanup of old cached versions
|
115
|
+
|
116
|
+
### Error Handling
|
117
|
+
- Model not found errors
|
118
|
+
- Version compatibility issues
|
119
|
+
- Large file download failures
|
120
|
+
- Storage space validation
|
121
|
+
- Network interruption handling
|
122
|
+
|
123
|
+
## Integration Points
|
124
|
+
|
125
|
+
### Dataset Integration
|
126
|
+
- Link models to their training datasets
|
127
|
+
- Show dataset requirements for model usage
|
128
|
+
- Validate dataset compatibility
|
129
|
+
|
130
|
+
### Competition Integration
|
131
|
+
- List models used in competitions
|
132
|
+
- Show competition performance metrics
|
133
|
+
- Link to winning solutions
|
134
|
+
|
135
|
+
### Benchmark Integration
|
136
|
+
- Access model performance benchmarks
|
137
|
+
- Compare models on standard datasets
|
138
|
+
- Track performance across versions
|
139
|
+
|
140
|
+
## Priority: Medium
|
141
|
+
Target completion: Version 0.4.0
|
142
|
+
|
143
|
+
## Notes
|
144
|
+
- Models API may require additional authentication scopes
|
145
|
+
- Large model files will need chunked downloading
|
146
|
+
- Consider integration with popular ML frameworks (PyTorch, TensorFlow)
|
147
|
+
- May need specialized handling for different model formats
|
data/plans/roadmap.md
ADDED
@@ -0,0 +1,192 @@
|
|
1
|
+
# Kaggle Ruby Gem Roadmap
|
2
|
+
|
3
|
+
## Project Vision
|
4
|
+
Create a comprehensive, production-ready Ruby client for the Kaggle API that serves as the definitive tool for Ruby developers working with Kaggle's datasets, competitions, models, and kernels.
|
5
|
+
|
6
|
+
## Current Version: 0.0.1
|
7
|
+
✅ **Core Foundation Complete**
|
8
|
+
- Basic gem structure and configuration
|
9
|
+
- Dataset downloading and CSV parsing
|
10
|
+
- Configurable caching and download paths
|
11
|
+
- Command-line interface
|
12
|
+
- Comprehensive test suite
|
13
|
+
- Documentation and development guidelines
|
14
|
+
|
15
|
+
## Version 0.1.0 - Polish and Stability
|
16
|
+
**Target: Q4 2025**
|
17
|
+
|
18
|
+
### Bug Fixes and Improvements
|
19
|
+
- [ ] Fix any issues discovered during initial usage
|
20
|
+
- [ ] Improve error messages and user feedback
|
21
|
+
- [ ] Optimize memory usage for large datasets
|
22
|
+
- [ ] Add retry logic for network failures
|
23
|
+
- [ ] Enhance CLI output formatting
|
24
|
+
|
25
|
+
### Documentation
|
26
|
+
- [ ] Add YARD documentation to all public methods
|
27
|
+
- [ ] Create tutorial guides for common use cases
|
28
|
+
- [ ] Add troubleshooting section to README
|
29
|
+
- [ ] Include real-world usage examples
|
30
|
+
- [ ] Set up automated documentation generation
|
31
|
+
|
32
|
+
### Testing and Quality
|
33
|
+
- [ ] Increase test coverage to 85%+
|
34
|
+
- [ ] Add integration tests with real Kaggle API
|
35
|
+
- [ ] Set up continuous integration (GitHub Actions)
|
36
|
+
- [ ] Add code quality tools (RuboCop, CodeClimate)
|
37
|
+
- [ ] Performance regression testing
|
38
|
+
|
39
|
+
## Version 0.2.0 - CLI Enhancement
|
40
|
+
**Target: Q1 2026**
|
41
|
+
|
42
|
+
### Enhanced CLI Tool (High Priority)
|
43
|
+
- [ ] Interactive mode for guided operations
|
44
|
+
- [ ] Progress indicators for long-running operations
|
45
|
+
- [ ] Configuration file support (YAML/JSON)
|
46
|
+
- [ ] Bulk operations and batch processing
|
47
|
+
- [ ] Shell completion scripts (bash/zsh)
|
48
|
+
|
49
|
+
### User Experience
|
50
|
+
- [ ] Better error handling and recovery
|
51
|
+
- [ ] Verbose and quiet output modes
|
52
|
+
- [ ] Operation resumption capabilities
|
53
|
+
- [ ] Improved help system with examples
|
54
|
+
|
55
|
+
## Version 0.3.0 - Lists and Discovery
|
56
|
+
**Target: Q2 2026**
|
57
|
+
|
58
|
+
### Enhanced Lists (High Priority)
|
59
|
+
- [ ] Advanced filtering and sorting for all resource types
|
60
|
+
- [ ] Category and topic-based browsing
|
61
|
+
- [ ] User and organization-specific lists
|
62
|
+
- [ ] Featured and trending content discovery
|
63
|
+
- [ ] Export capabilities for lists
|
64
|
+
|
65
|
+
### New Resource Types
|
66
|
+
- [ ] Competition listing and discovery
|
67
|
+
- [ ] Model browsing and search
|
68
|
+
- [ ] Kernel/notebook discovery
|
69
|
+
- [ ] User profile and activity feeds
|
70
|
+
|
71
|
+
## Version 0.4.0 - Models Support
|
72
|
+
**Target: Q3 2026**
|
73
|
+
|
74
|
+
### Model Operations (Medium Priority)
|
75
|
+
- [ ] Model discovery and search
|
76
|
+
- [ ] Model downloading and version management
|
77
|
+
- [ ] Model metadata and performance metrics
|
78
|
+
- [ ] Framework integration (TensorFlow, PyTorch)
|
79
|
+
- [ ] Local model registry and tracking
|
80
|
+
|
81
|
+
### Advanced Features
|
82
|
+
- [ ] Model comparison and benchmarking
|
83
|
+
- [ ] Automated model validation
|
84
|
+
- [ ] Dependency management for models
|
85
|
+
- [ ] Integration with popular ML libraries
|
86
|
+
|
87
|
+
## Version 0.5.0 - Performance and Monitoring
|
88
|
+
**Target: Q4 2026**
|
89
|
+
|
90
|
+
### Benchmarking Suite (Low Priority)
|
91
|
+
- [ ] Comprehensive performance benchmarking
|
92
|
+
- [ ] API response time monitoring
|
93
|
+
- [ ] Dataset processing speed analysis
|
94
|
+
- [ ] Memory and CPU usage profiling
|
95
|
+
- [ ] Performance regression detection
|
96
|
+
|
97
|
+
### Optimization
|
98
|
+
- [ ] Parallel downloads and processing
|
99
|
+
- [ ] Streaming for large files
|
100
|
+
- [ ] Connection pooling and keep-alive
|
101
|
+
- [ ] Smart caching strategies
|
102
|
+
- [ ] Resource usage optimization
|
103
|
+
|
104
|
+
## Version 1.0.0 - Production Ready
|
105
|
+
**Target: Q1 2027**
|
106
|
+
|
107
|
+
### Competition Support
|
108
|
+
- [ ] Competition participation workflows
|
109
|
+
- [ ] Submission management
|
110
|
+
- [ ] Leaderboard monitoring
|
111
|
+
- [ ] Team collaboration features
|
112
|
+
- [ ] Historical competition analysis
|
113
|
+
|
114
|
+
### Enterprise Features
|
115
|
+
- [ ] Team and organization management
|
116
|
+
- [ ] Advanced authentication methods
|
117
|
+
- [ ] Audit logging and compliance
|
118
|
+
- [ ] Rate limiting and quota management
|
119
|
+
- [ ] Multi-environment support
|
120
|
+
|
121
|
+
### Ecosystem Integration
|
122
|
+
- [ ] Integration with popular Ruby frameworks (Rails, Sinatra)
|
123
|
+
- [ ] Data pipeline integration (Sidekiq, Resque)
|
124
|
+
- [ ] Database connectivity (ActiveRecord, Sequel)
|
125
|
+
- [ ] Cloud platform support (AWS, GCP, Azure)
|
126
|
+
- [ ] Container deployment support
|
127
|
+
|
128
|
+
## Future Considerations (Post 1.0.0)
|
129
|
+
|
130
|
+
### Advanced Analytics
|
131
|
+
- [ ] Built-in data analysis tools
|
132
|
+
- [ ] Statistical summary generation
|
133
|
+
- [ ] Data quality assessment
|
134
|
+
- [ ] Automated data profiling
|
135
|
+
- [ ] Visualization capabilities
|
136
|
+
|
137
|
+
### Machine Learning Integration
|
138
|
+
- [ ] AutoML pipeline integration
|
139
|
+
- [ ] Experiment tracking and management
|
140
|
+
- [ ] Feature engineering utilities
|
141
|
+
- [ ] Model deployment workflows
|
142
|
+
- [ ] A/B testing frameworks
|
143
|
+
|
144
|
+
### Community Features
|
145
|
+
- [ ] Social features (following users, bookmarking)
|
146
|
+
- [ ] Discussion and comment integration
|
147
|
+
- [ ] Collaborative features for teams
|
148
|
+
- [ ] Knowledge sharing tools
|
149
|
+
- [ ] Community-driven extensions
|
150
|
+
|
151
|
+
## Success Metrics
|
152
|
+
|
153
|
+
### Technical Metrics
|
154
|
+
- Test coverage > 90%
|
155
|
+
- API response time < 2 seconds average
|
156
|
+
- Memory usage < 100MB for typical operations
|
157
|
+
- Zero critical security vulnerabilities
|
158
|
+
- Support for Ruby 3.0+ versions
|
159
|
+
|
160
|
+
### Community Metrics
|
161
|
+
- 1000+ gem downloads in first year
|
162
|
+
- 50+ GitHub stars
|
163
|
+
- 10+ community contributors
|
164
|
+
- 5+ production deployments
|
165
|
+
- Active community discussion and support
|
166
|
+
|
167
|
+
### Quality Metrics
|
168
|
+
- Comprehensive documentation coverage
|
169
|
+
- < 1% bug report rate relative to usage
|
170
|
+
- Regular security updates and maintenance
|
171
|
+
- Backward compatibility within major versions
|
172
|
+
- Professional-grade error handling and logging
|
173
|
+
|
174
|
+
## Maintenance and Support
|
175
|
+
|
176
|
+
### Long-term Commitment
|
177
|
+
- Regular dependency updates
|
178
|
+
- Security patch releases
|
179
|
+
- Ruby version compatibility maintenance
|
180
|
+
- API change adaptation
|
181
|
+
- Community support and issue resolution
|
182
|
+
|
183
|
+
### Deprecation Policy
|
184
|
+
- 12-month notice for breaking changes
|
185
|
+
- Clear migration paths for deprecated features
|
186
|
+
- Comprehensive changelog maintenance
|
187
|
+
- Version compatibility matrix
|
188
|
+
- Automated migration tools where possible
|
189
|
+
|
190
|
+
---
|
191
|
+
|
192
|
+
**Note**: This roadmap is subject to change based on community feedback, Kaggle API evolution, and Ruby ecosystem developments. Priority levels may be adjusted based on user needs and contributions.
|
metadata
ADDED
@@ -0,0 +1,259 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: kaggle
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Your Name
|
8
|
+
bindir: exe
|
9
|
+
cert_chain: []
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
11
|
+
dependencies:
|
12
|
+
- !ruby/object:Gem::Dependency
|
13
|
+
name: httparty
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
15
|
+
requirements:
|
16
|
+
- - ">="
|
17
|
+
- !ruby/object:Gem::Version
|
18
|
+
version: '0.23'
|
19
|
+
type: :runtime
|
20
|
+
prerelease: false
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
22
|
+
requirements:
|
23
|
+
- - ">="
|
24
|
+
- !ruby/object:Gem::Version
|
25
|
+
version: '0.23'
|
26
|
+
- !ruby/object:Gem::Dependency
|
27
|
+
name: csv
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
29
|
+
requirements:
|
30
|
+
- - ">="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '3.3'
|
33
|
+
type: :runtime
|
34
|
+
prerelease: false
|
35
|
+
version_requirements: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - ">="
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '3.3'
|
40
|
+
- !ruby/object:Gem::Dependency
|
41
|
+
name: oj
|
42
|
+
requirement: !ruby/object:Gem::Requirement
|
43
|
+
requirements:
|
44
|
+
- - '='
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: 3.16.11
|
47
|
+
type: :runtime
|
48
|
+
prerelease: false
|
49
|
+
version_requirements: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - '='
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: 3.16.11
|
54
|
+
- !ruby/object:Gem::Dependency
|
55
|
+
name: fileutils
|
56
|
+
requirement: !ruby/object:Gem::Requirement
|
57
|
+
requirements:
|
58
|
+
- - ">="
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: '1.7'
|
61
|
+
type: :runtime
|
62
|
+
prerelease: false
|
63
|
+
version_requirements: !ruby/object:Gem::Requirement
|
64
|
+
requirements:
|
65
|
+
- - ">="
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
version: '1.7'
|
68
|
+
- !ruby/object:Gem::Dependency
|
69
|
+
name: rubyzip
|
70
|
+
requirement: !ruby/object:Gem::Requirement
|
71
|
+
requirements:
|
72
|
+
- - ">="
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: '2.0'
|
75
|
+
type: :runtime
|
76
|
+
prerelease: false
|
77
|
+
version_requirements: !ruby/object:Gem::Requirement
|
78
|
+
requirements:
|
79
|
+
- - ">="
|
80
|
+
- !ruby/object:Gem::Version
|
81
|
+
version: '2.0'
|
82
|
+
- !ruby/object:Gem::Dependency
|
83
|
+
name: rake
|
84
|
+
requirement: !ruby/object:Gem::Requirement
|
85
|
+
requirements:
|
86
|
+
- - "~>"
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: 13.3.0
|
89
|
+
type: :development
|
90
|
+
prerelease: false
|
91
|
+
version_requirements: !ruby/object:Gem::Requirement
|
92
|
+
requirements:
|
93
|
+
- - "~>"
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
version: 13.3.0
|
96
|
+
- !ruby/object:Gem::Dependency
|
97
|
+
name: minitest
|
98
|
+
requirement: !ruby/object:Gem::Requirement
|
99
|
+
requirements:
|
100
|
+
- - "~>"
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
version: 5.25.5
|
103
|
+
type: :development
|
104
|
+
prerelease: false
|
105
|
+
version_requirements: !ruby/object:Gem::Requirement
|
106
|
+
requirements:
|
107
|
+
- - "~>"
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: 5.25.5
|
110
|
+
- !ruby/object:Gem::Dependency
|
111
|
+
name: minitest-focus
|
112
|
+
requirement: !ruby/object:Gem::Requirement
|
113
|
+
requirements:
|
114
|
+
- - "~>"
|
115
|
+
- !ruby/object:Gem::Version
|
116
|
+
version: 1.4.0
|
117
|
+
type: :development
|
118
|
+
prerelease: false
|
119
|
+
version_requirements: !ruby/object:Gem::Requirement
|
120
|
+
requirements:
|
121
|
+
- - "~>"
|
122
|
+
- !ruby/object:Gem::Version
|
123
|
+
version: 1.4.0
|
124
|
+
- !ruby/object:Gem::Dependency
|
125
|
+
name: minitest-reporters
|
126
|
+
requirement: !ruby/object:Gem::Requirement
|
127
|
+
requirements:
|
128
|
+
- - "~>"
|
129
|
+
- !ruby/object:Gem::Version
|
130
|
+
version: 1.7.1
|
131
|
+
type: :development
|
132
|
+
prerelease: false
|
133
|
+
version_requirements: !ruby/object:Gem::Requirement
|
134
|
+
requirements:
|
135
|
+
- - "~>"
|
136
|
+
- !ruby/object:Gem::Version
|
137
|
+
version: 1.7.1
|
138
|
+
- !ruby/object:Gem::Dependency
|
139
|
+
name: webmock
|
140
|
+
requirement: !ruby/object:Gem::Requirement
|
141
|
+
requirements:
|
142
|
+
- - "~>"
|
143
|
+
- !ruby/object:Gem::Version
|
144
|
+
version: 3.24.0
|
145
|
+
type: :development
|
146
|
+
prerelease: false
|
147
|
+
version_requirements: !ruby/object:Gem::Requirement
|
148
|
+
requirements:
|
149
|
+
- - "~>"
|
150
|
+
- !ruby/object:Gem::Version
|
151
|
+
version: 3.24.0
|
152
|
+
- !ruby/object:Gem::Dependency
|
153
|
+
name: mocha
|
154
|
+
requirement: !ruby/object:Gem::Requirement
|
155
|
+
requirements:
|
156
|
+
- - "~>"
|
157
|
+
- !ruby/object:Gem::Version
|
158
|
+
version: 2.4.5
|
159
|
+
type: :development
|
160
|
+
prerelease: false
|
161
|
+
version_requirements: !ruby/object:Gem::Requirement
|
162
|
+
requirements:
|
163
|
+
- - "~>"
|
164
|
+
- !ruby/object:Gem::Version
|
165
|
+
version: 2.4.5
|
166
|
+
- !ruby/object:Gem::Dependency
|
167
|
+
name: pry
|
168
|
+
requirement: !ruby/object:Gem::Requirement
|
169
|
+
requirements:
|
170
|
+
- - "~>"
|
171
|
+
- !ruby/object:Gem::Version
|
172
|
+
version: 0.15.2
|
173
|
+
type: :development
|
174
|
+
prerelease: false
|
175
|
+
version_requirements: !ruby/object:Gem::Requirement
|
176
|
+
requirements:
|
177
|
+
- - "~>"
|
178
|
+
- !ruby/object:Gem::Version
|
179
|
+
version: 0.15.2
|
180
|
+
- !ruby/object:Gem::Dependency
|
181
|
+
name: simplecov
|
182
|
+
requirement: !ruby/object:Gem::Requirement
|
183
|
+
requirements:
|
184
|
+
- - "~>"
|
185
|
+
- !ruby/object:Gem::Version
|
186
|
+
version: 0.22.0
|
187
|
+
type: :development
|
188
|
+
prerelease: false
|
189
|
+
version_requirements: !ruby/object:Gem::Requirement
|
190
|
+
requirements:
|
191
|
+
- - "~>"
|
192
|
+
- !ruby/object:Gem::Version
|
193
|
+
version: 0.22.0
|
194
|
+
- !ruby/object:Gem::Dependency
|
195
|
+
name: timecop
|
196
|
+
requirement: !ruby/object:Gem::Requirement
|
197
|
+
requirements:
|
198
|
+
- - "~>"
|
199
|
+
- !ruby/object:Gem::Version
|
200
|
+
version: 0.9.10
|
201
|
+
type: :development
|
202
|
+
prerelease: false
|
203
|
+
version_requirements: !ruby/object:Gem::Requirement
|
204
|
+
requirements:
|
205
|
+
- - "~>"
|
206
|
+
- !ruby/object:Gem::Version
|
207
|
+
version: 0.9.10
|
208
|
+
description: A Ruby gem for interacting with the Kaggle API, including dataset downloads
|
209
|
+
with caching support
|
210
|
+
email:
|
211
|
+
- your.email@example.com
|
212
|
+
executables: []
|
213
|
+
extensions: []
|
214
|
+
extra_rdoc_files: []
|
215
|
+
files:
|
216
|
+
- ".claude/settings.local.json"
|
217
|
+
- ".ruby-version"
|
218
|
+
- CLAUDE.md
|
219
|
+
- CODE_OF_CONDUCT.md
|
220
|
+
- LICENSE
|
221
|
+
- README.md
|
222
|
+
- Rakefile
|
223
|
+
- kaggle.gemspec
|
224
|
+
- lib/kaggle.rb
|
225
|
+
- lib/kaggle/client.rb
|
226
|
+
- lib/kaggle/constants.rb
|
227
|
+
- lib/kaggle/version.rb
|
228
|
+
- plans/benchmarks.md
|
229
|
+
- plans/cli_tool.md
|
230
|
+
- plans/initial_prompt.md
|
231
|
+
- plans/lists.md
|
232
|
+
- plans/models.md
|
233
|
+
- plans/roadmap.md
|
234
|
+
homepage: https://github.com/yourusername/kaggle
|
235
|
+
licenses:
|
236
|
+
- MIT
|
237
|
+
metadata:
|
238
|
+
allowed_push_host: https://rubygems.org
|
239
|
+
homepage_uri: https://github.com/yourusername/kaggle
|
240
|
+
source_code_uri: https://github.com/yourusername/kaggle
|
241
|
+
changelog_uri: https://github.com/yourusername/kaggle/blob/main/CHANGELOG.md
|
242
|
+
rdoc_options: []
|
243
|
+
require_paths:
|
244
|
+
- lib
|
245
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
246
|
+
requirements:
|
247
|
+
- - ">="
|
248
|
+
- !ruby/object:Gem::Version
|
249
|
+
version: 3.0.0
|
250
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
251
|
+
requirements:
|
252
|
+
- - ">="
|
253
|
+
- !ruby/object:Gem::Version
|
254
|
+
version: '0'
|
255
|
+
requirements: []
|
256
|
+
rubygems_version: 3.6.9
|
257
|
+
specification_version: 4
|
258
|
+
summary: Ruby client for the Kaggle API
|
259
|
+
test_files: []
|