rails-markup 1.2.0 → 1.2.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/README.md +2 -2
- data/app/controllers/rails_markup/dashboard_controller.rb +3 -1
- data/lib/rails_markup/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c65b4be0591e353be4e06714f921cafbf19baff34208cafe031fcf0836733d42
|
|
4
|
+
data.tar.gz: 8ab44e2760890c2d006b885030022b9136edb2dbe47661e1ddefb8954a2a7ed4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ddbb94596865d6c382df45a761aa9f89e2781c273a329af8995a8923c84c01f9ea5e663c59b699181a232dc70e77706371c969dbf781631b640d701c27c98009
|
|
7
|
+
data.tar.gz: 32ead13d3daec734e8b206e847bb6e78944b91eeb5082df1b83dcc12a8bd543b17651f0f8fdc550c08bc62bcf3a979cd51d65e75ed5892d0a5cbe60af5061e6a
|
data/README.md
CHANGED
|
@@ -17,7 +17,7 @@ Point-and-click annotation tool for Rails apps. Click any element, describe what
|
|
|
17
17
|
|
|
18
18
|
```ruby
|
|
19
19
|
# Gemfile
|
|
20
|
-
gem "rails-markup", github: "
|
|
20
|
+
gem "rails-markup", github: "nauman/rails-markup", require: "rails_markup"
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
```bash
|
|
@@ -294,7 +294,7 @@ Browser Toolbar AI Agent (Claude Code, Cursor)
|
|
|
294
294
|
## Development
|
|
295
295
|
|
|
296
296
|
```bash
|
|
297
|
-
git clone https://github.com/
|
|
297
|
+
git clone https://github.com/nauman/rails-markup
|
|
298
298
|
cd rails-markup && bundle install
|
|
299
299
|
bundle exec ruby -Ilib:test test/**/*_test.rb
|
|
300
300
|
```
|
|
@@ -220,7 +220,9 @@ module RailsMarkup
|
|
|
220
220
|
def generate_csv(scope)
|
|
221
221
|
CSV.generate(headers: true) do |csv|
|
|
222
222
|
csv << %w[id status intent severity content page_url author selected_text created_at updated_at]
|
|
223
|
-
|
|
223
|
+
# each (not find_each) so the export keeps the scope's :recent ordering —
|
|
224
|
+
# find_each ignores ORDER BY and batches by primary key.
|
|
225
|
+
scope.each do |ann|
|
|
224
226
|
csv << [ann.id, ann.status, ann.intent, ann.severity, ann.content, ann.page_url,
|
|
225
227
|
ann.author_name, ann.selected_text, ann.created_at.iso8601, ann.updated_at.iso8601]
|
|
226
228
|
end
|
data/lib/rails_markup/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rails-markup
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- InventList
|
|
@@ -161,13 +161,13 @@ files:
|
|
|
161
161
|
- lib/rails_markup/store.rb
|
|
162
162
|
- lib/rails_markup/version.rb
|
|
163
163
|
- lib/tasks/rails_markup_client_uuids.rake
|
|
164
|
-
homepage: https://github.com/
|
|
164
|
+
homepage: https://github.com/nauman/rails-markup
|
|
165
165
|
licenses:
|
|
166
166
|
- MIT
|
|
167
167
|
metadata:
|
|
168
|
-
homepage_uri: https://github.com/
|
|
169
|
-
source_code_uri: https://github.com/
|
|
170
|
-
changelog_uri: https://github.com/
|
|
168
|
+
homepage_uri: https://github.com/nauman/rails-markup
|
|
169
|
+
source_code_uri: https://github.com/nauman/rails-markup
|
|
170
|
+
changelog_uri: https://github.com/nauman/rails-markup/blob/main/CHANGELOG.md
|
|
171
171
|
post_install_message: |
|
|
172
172
|
Rails Markup installed! Run the generator to set up:
|
|
173
173
|
|