ai_summary 0.1.0 → 0.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/.github/workflows/rubygems.yml +37 -0
- data/.idea/workspace.xml +79 -5
- data/lib/ai_summary/version.rb +1 -1
- metadata +8 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e4c8f47c79f9814f4ce433a4294ee95ef2a87c15cf62a01001ee50d3c094cf4f
|
|
4
|
+
data.tar.gz: b0244c27bac8ce73d4483f5fe41cd88d5e1ff538d6c5adfe18fbd49bf07d21e4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 62eb2ddb523aa3bccc741f0505cf3c15a06abc99e704802ec782b73127c80cfdb6f7852f1bd8561204e9d1ec99d9a4fe7d343c9f112bf3b6cbdf23f937a6e43c
|
|
7
|
+
data.tar.gz: 21539fb0afb6fd7de34a88893c0ec477c302046a9ddab420b0cb0592f065f987578d5c48104ad5341a044ac09c8d0700d2c9d57036230cdb3776a05fac9ed1e6
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
name: Publish to RubyGems
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [ main ]
|
|
6
|
+
# Allows use to run it manually
|
|
7
|
+
workflow_dispatch:
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
release:
|
|
11
|
+
name: Push gem to RubyGems
|
|
12
|
+
runs-on: ubuntu-latest
|
|
13
|
+
|
|
14
|
+
steps:
|
|
15
|
+
- name: Checkout code
|
|
16
|
+
uses: actions/checkout@v4
|
|
17
|
+
|
|
18
|
+
- name: Set up Ruby
|
|
19
|
+
uses: ruby/setup-ruby@v1
|
|
20
|
+
with:
|
|
21
|
+
ruby-version: 3.2
|
|
22
|
+
bundler-cache: true
|
|
23
|
+
|
|
24
|
+
- name: Install dependencies
|
|
25
|
+
run: bundle install
|
|
26
|
+
|
|
27
|
+
- name: Build gem
|
|
28
|
+
run: gem build ai_summary.gemspec
|
|
29
|
+
|
|
30
|
+
- name: Publish to RubyGems
|
|
31
|
+
env:
|
|
32
|
+
RUBYGEMS_API_KEY: ${{ secrets.RUBYGEMS_API_KEY }}
|
|
33
|
+
run: |
|
|
34
|
+
mkdir -p ~/.gem
|
|
35
|
+
echo -e "---\n:rubygems_api_key: $RUBYGEMS_API_KEY" > ~/.gem/credentials
|
|
36
|
+
chmod 0600 ~/.gem/credentials
|
|
37
|
+
gem push ai_summary-*.gem
|
data/.idea/workspace.xml
CHANGED
|
@@ -4,18 +4,35 @@
|
|
|
4
4
|
<option name="autoReloadType" value="SELECTIVE" />
|
|
5
5
|
</component>
|
|
6
6
|
<component name="ChangeListManager">
|
|
7
|
-
<list default="true" id="34d5e5cf-2804-4d8f-a534-bf8fd82f58ab" name="Changes" comment=""
|
|
7
|
+
<list default="true" id="34d5e5cf-2804-4d8f-a534-bf8fd82f58ab" name="Changes" comment="Test Github Action v2">
|
|
8
|
+
<change beforePath="$PROJECT_DIR$/.github/workflows/rubygems.yml" beforeDir="false" afterPath="$PROJECT_DIR$/.github/workflows/rubygems.yml" afterDir="false" />
|
|
9
|
+
</list>
|
|
8
10
|
<option name="SHOW_DIALOG" value="false" />
|
|
9
11
|
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
|
10
12
|
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
|
11
13
|
<option name="LAST_RESOLUTION" value="IGNORE" />
|
|
12
14
|
</component>
|
|
15
|
+
<component name="Git.Settings">
|
|
16
|
+
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
|
17
|
+
</component>
|
|
18
|
+
<component name="GitHubPullRequestSearchHistory"><![CDATA[{
|
|
19
|
+
"lastFilter": {
|
|
20
|
+
"state": "OPEN",
|
|
21
|
+
"assignee": "andersmarkc"
|
|
22
|
+
}
|
|
23
|
+
}]]></component>
|
|
24
|
+
<component name="GithubPullRequestsUISettings"><![CDATA[{
|
|
25
|
+
"selectedUrlAndAccountId": {
|
|
26
|
+
"url": "git@github.com:andersmarkc/ai_summary.git",
|
|
27
|
+
"accountId": "0bbf21cb-80eb-4c6d-aa6e-7f5156d440f3"
|
|
28
|
+
}
|
|
29
|
+
}]]></component>
|
|
13
30
|
<component name="ProblemsViewState">
|
|
14
31
|
<option name="selectedTabId" value="CurrentFile" />
|
|
15
32
|
</component>
|
|
16
|
-
<component name="ProjectColorInfo"
|
|
17
|
-
|
|
18
|
-
}
|
|
33
|
+
<component name="ProjectColorInfo">{
|
|
34
|
+
"associatedIndex": 3
|
|
35
|
+
}</component>
|
|
19
36
|
<component name="ProjectId" id="30HOYw0CzPfd6UVL8dI2mGUJ0fS" />
|
|
20
37
|
<component name="ProjectViewState">
|
|
21
38
|
<option name="hideEmptyMiddlePackages" value="true" />
|
|
@@ -25,7 +42,10 @@
|
|
|
25
42
|
"keyToString": {
|
|
26
43
|
"ModuleVcsDetector.initialDetectionPerformed": "true",
|
|
27
44
|
"RunOnceActivity.ShowReadmeOnStart": "true",
|
|
28
|
-
"
|
|
45
|
+
"RunOnceActivity.git.unshallow": "true",
|
|
46
|
+
"com.intellij.lang.ruby.rbs.tools.collection.workspace.sync.RbsCollectionUpdateProjectActivity#LAST_UPDATE_TIMESTAMP": "1753281912802",
|
|
47
|
+
"git-widget-placeholder": "main",
|
|
48
|
+
"last_opened_file_path": "/Users/aj/RubymineProjects/ai_summary",
|
|
29
49
|
"node.js.detected.package.eslint": "true",
|
|
30
50
|
"node.js.detected.package.tslint": "true",
|
|
31
51
|
"node.js.selected.package.eslint": "(autodetect)",
|
|
@@ -35,6 +55,11 @@
|
|
|
35
55
|
"vue.rearranger.settings.migration": "true"
|
|
36
56
|
}
|
|
37
57
|
}]]></component>
|
|
58
|
+
<component name="RecentsManager">
|
|
59
|
+
<key name="CopyFile.RECENT_KEYS">
|
|
60
|
+
<recent name="$PROJECT_DIR$" />
|
|
61
|
+
</key>
|
|
62
|
+
</component>
|
|
38
63
|
<component name="SharedIndexes">
|
|
39
64
|
<attachedChunks>
|
|
40
65
|
<set>
|
|
@@ -51,10 +76,59 @@
|
|
|
51
76
|
<option name="presentableId" value="Default" />
|
|
52
77
|
<updated>1753281082472</updated>
|
|
53
78
|
<workItem from="1753281097573" duration="753000" />
|
|
79
|
+
<workItem from="1753281853845" duration="1287000" />
|
|
54
80
|
</task>
|
|
81
|
+
<task id="LOCAL-00001" summary="Add README and Gemspec">
|
|
82
|
+
<option name="closed" value="true" />
|
|
83
|
+
<created>1753281896707</created>
|
|
84
|
+
<option name="number" value="00001" />
|
|
85
|
+
<option name="presentableId" value="LOCAL-00001" />
|
|
86
|
+
<option name="project" value="LOCAL" />
|
|
87
|
+
<updated>1753281896707</updated>
|
|
88
|
+
</task>
|
|
89
|
+
<task id="LOCAL-00002" summary="Update Readme">
|
|
90
|
+
<option name="closed" value="true" />
|
|
91
|
+
<created>1753281955589</created>
|
|
92
|
+
<option name="number" value="00002" />
|
|
93
|
+
<option name="presentableId" value="LOCAL-00002" />
|
|
94
|
+
<option name="project" value="LOCAL" />
|
|
95
|
+
<updated>1753281955589</updated>
|
|
96
|
+
</task>
|
|
97
|
+
<task id="LOCAL-00003" summary="Test Github Action">
|
|
98
|
+
<option name="closed" value="true" />
|
|
99
|
+
<created>1753282623109</created>
|
|
100
|
+
<option name="number" value="00003" />
|
|
101
|
+
<option name="presentableId" value="LOCAL-00003" />
|
|
102
|
+
<option name="project" value="LOCAL" />
|
|
103
|
+
<updated>1753282623109</updated>
|
|
104
|
+
</task>
|
|
105
|
+
<task id="LOCAL-00004" summary="Test Github Action">
|
|
106
|
+
<option name="closed" value="true" />
|
|
107
|
+
<created>1753282692552</created>
|
|
108
|
+
<option name="number" value="00004" />
|
|
109
|
+
<option name="presentableId" value="LOCAL-00004" />
|
|
110
|
+
<option name="project" value="LOCAL" />
|
|
111
|
+
<updated>1753282692552</updated>
|
|
112
|
+
</task>
|
|
113
|
+
<task id="LOCAL-00005" summary="Test Github Action v2">
|
|
114
|
+
<option name="closed" value="true" />
|
|
115
|
+
<created>1753282869396</created>
|
|
116
|
+
<option name="number" value="00005" />
|
|
117
|
+
<option name="presentableId" value="LOCAL-00005" />
|
|
118
|
+
<option name="project" value="LOCAL" />
|
|
119
|
+
<updated>1753282869396</updated>
|
|
120
|
+
</task>
|
|
121
|
+
<option name="localTasksCounter" value="6" />
|
|
55
122
|
<servers />
|
|
56
123
|
</component>
|
|
57
124
|
<component name="TypeScriptGeneratedFilesManager">
|
|
58
125
|
<option name="version" value="3" />
|
|
59
126
|
</component>
|
|
127
|
+
<component name="VcsManagerConfiguration">
|
|
128
|
+
<MESSAGE value="Add README and Gemspec" />
|
|
129
|
+
<MESSAGE value="Update Readme" />
|
|
130
|
+
<MESSAGE value="Test Github Action" />
|
|
131
|
+
<MESSAGE value="Test Github Action v2" />
|
|
132
|
+
<option name="LAST_COMMIT_MESSAGE" value="Test Github Action v2" />
|
|
133
|
+
</component>
|
|
60
134
|
</project>
|
data/lib/ai_summary/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ai_summary
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
- Anders
|
|
7
|
+
- Anders Jonassen
|
|
8
|
+
autorequire:
|
|
8
9
|
bindir: exe
|
|
9
10
|
cert_chain: []
|
|
10
|
-
date:
|
|
11
|
+
date: 2025-07-23 00:00:00.000000000 Z
|
|
11
12
|
dependencies:
|
|
12
13
|
- !ruby/object:Gem::Dependency
|
|
13
14
|
name: rails
|
|
@@ -103,6 +104,7 @@ executables: []
|
|
|
103
104
|
extensions: []
|
|
104
105
|
extra_rdoc_files: []
|
|
105
106
|
files:
|
|
107
|
+
- ".github/workflows/rubygems.yml"
|
|
106
108
|
- ".idea/workspace.xml"
|
|
107
109
|
- CHANGELOG.md
|
|
108
110
|
- CODE_OF_CONDUCT.md
|
|
@@ -120,6 +122,7 @@ metadata:
|
|
|
120
122
|
homepage_uri: https://github.com/andersmarkc/ai_summary
|
|
121
123
|
source_code_uri: https://github.com/andersmarkc/ai_summary
|
|
122
124
|
changelog_uri: https://github.com/andersmarkc/ai_summary/blob/main/CHANGELOG.md
|
|
125
|
+
post_install_message:
|
|
123
126
|
rdoc_options: []
|
|
124
127
|
require_paths:
|
|
125
128
|
- lib
|
|
@@ -134,7 +137,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
134
137
|
- !ruby/object:Gem::Version
|
|
135
138
|
version: '0'
|
|
136
139
|
requirements: []
|
|
137
|
-
rubygems_version: 3.
|
|
140
|
+
rubygems_version: 3.4.19
|
|
141
|
+
signing_key:
|
|
138
142
|
specification_version: 4
|
|
139
143
|
summary: Generate a structured summary of your Rails codebase for AI-assisted workflows.
|
|
140
144
|
test_files: []
|