reposer 1.1.0 → 1.1.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/Gemfile.lock +2 -2
- data/README.md +16 -16
- data/lib/repose/cli.rb +2 -2
- data/lib/repose/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d2d182e993a62366b11a0717b1493ac0d5cdc3eb7919b2943d24991361e02aae
|
|
4
|
+
data.tar.gz: 8ef47495a5f872a344f9e435d3144b0d3c3dfb1dfbc314b6bb59d04d86ba40f5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 67f272b0d8c59d178839833edca2e7bcdb4f01e69c4a29703ea06683a9d978481bc2b5223fdf6805a25d8752bb8de24cdd3d8447ec6d8744c437b01d757e08e6
|
|
7
|
+
data.tar.gz: 72d427439970c77e660ac48894df1cc0e5cb4ec7a250297467db547ef3893228bdcec7da90d2ffcd4f2ccf596148356548606fe116ba0b3ac92db4841cb40b9f
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
|
|
4
|
+
reposer (1.1.1)
|
|
5
5
|
faraday (~> 2.0)
|
|
6
6
|
octokit (~> 6.0)
|
|
7
7
|
ostruct (~> 0.6)
|
|
@@ -136,7 +136,7 @@ PLATFORMS
|
|
|
136
136
|
|
|
137
137
|
DEPENDENCIES
|
|
138
138
|
pry (~> 0.14)
|
|
139
|
-
|
|
139
|
+
reposer!
|
|
140
140
|
rspec (~> 3.0)
|
|
141
141
|
rubocop (~> 1.0)
|
|
142
142
|
rubocop-performance
|
data/README.md
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Reposer 🎯
|
|
2
2
|
|
|
3
3
|
**Status**: Production-ready Ruby gem for AI-powered repository creation - intelligent automation of GitHub project setup and documentation generation.
|
|
4
4
|
|
|
5
5
|
> **AI-powered GitHub repository creation and management tool**
|
|
6
6
|
|
|
7
|
-
[](https://badge.fury.io/rb/reposer)
|
|
8
8
|
[](https://github.com/wesleyscholl/repose/actions/workflows/ci.yml)
|
|
9
9
|
[](https://github.com/wesleyscholl/repose)
|
|
10
10
|
[](https://ruby-lang.org)
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
Reposer is an intelligent CLI tool that uses AI to create GitHub repositories with smart descriptions, relevant topics, comprehensive READMEs, and proper project structure. No more staring at blank repository forms!
|
|
13
13
|
|
|
14
14
|
## ✨ Features
|
|
15
15
|
|
|
@@ -82,44 +82,44 @@ You'll need:
|
|
|
82
82
|
### Create Your First Repository
|
|
83
83
|
|
|
84
84
|
```bash
|
|
85
|
-
|
|
85
|
+
reposer create my-awesome-project
|
|
86
86
|
```
|
|
87
87
|
|
|
88
|
-
That's it!
|
|
88
|
+
That's it! Reposer will intelligently guide you through the process.
|
|
89
89
|
|
|
90
90
|
## 🎨 Usage Examples
|
|
91
91
|
|
|
92
92
|
### Basic Usage
|
|
93
93
|
```bash
|
|
94
|
-
# Interactive mode -
|
|
95
|
-
|
|
94
|
+
# Interactive mode - Reposer guides you
|
|
95
|
+
reposer create my-project
|
|
96
96
|
|
|
97
97
|
# Quick creation with language
|
|
98
|
-
|
|
98
|
+
reposer create web-scraper --language ruby
|
|
99
99
|
|
|
100
100
|
# Full specification
|
|
101
|
-
|
|
101
|
+
reposer create api-server --language go --framework gin --private
|
|
102
102
|
```
|
|
103
103
|
|
|
104
104
|
### Advanced Usage
|
|
105
105
|
```bash
|
|
106
106
|
# Preview before creating
|
|
107
|
-
|
|
107
|
+
reposer create ai-chatbot --language python --framework fastapi --dry-run
|
|
108
108
|
|
|
109
109
|
# Custom description and topics
|
|
110
|
-
|
|
110
|
+
reposer create data-processor \
|
|
111
111
|
--language python \
|
|
112
112
|
--description "High-performance data processing pipeline" \
|
|
113
113
|
--topics ml,data,etl,python
|
|
114
114
|
|
|
115
115
|
# Framework-specific project
|
|
116
|
-
|
|
116
|
+
reposer create blog-api --language ruby --framework rails --private
|
|
117
117
|
```
|
|
118
118
|
|
|
119
119
|
### Interactive Experience
|
|
120
120
|
```bash
|
|
121
|
-
$
|
|
122
|
-
🎯
|
|
121
|
+
$ reposer create awesome-api
|
|
122
|
+
🎯 Reposer - AI Repository Creator
|
|
123
123
|
========================================
|
|
124
124
|
Primary programming language: ruby
|
|
125
125
|
Framework/Library: Rails
|
|
@@ -152,11 +152,11 @@ Create repository? (Y/n) y
|
|
|
152
152
|
|
|
153
153
|
### Initial Setup
|
|
154
154
|
```bash
|
|
155
|
-
|
|
155
|
+
reposer configure
|
|
156
156
|
```
|
|
157
157
|
|
|
158
158
|
### Configuration File
|
|
159
|
-
Located at `~/.
|
|
159
|
+
Located at `~/.reposer.yml`:
|
|
160
160
|
|
|
161
161
|
```yaml
|
|
162
162
|
github_token: "your_github_token"
|
data/lib/repose/cli.rb
CHANGED
|
@@ -107,8 +107,8 @@ module Repose
|
|
|
107
107
|
|
|
108
108
|
# Interactive prompts for missing context
|
|
109
109
|
unless context[:language]
|
|
110
|
-
languages = %w[
|
|
111
|
-
context[:language] = prompt.select("Primary programming language:", languages, per_page:
|
|
110
|
+
languages = %w[c c++ c# go java javascript kotlin mojo php python ruby rust scala typescript]
|
|
111
|
+
context[:language] = prompt.select("Primary programming language:", languages, per_page: 14)
|
|
112
112
|
end
|
|
113
113
|
|
|
114
114
|
unless context[:framework]
|
data/lib/repose/version.rb
CHANGED