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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ba51cbb26a37ce1d218f565367f1f15010b3cbe2b884dc2c19000b3b2607b50d
4
- data.tar.gz: efca7d5c37141a1a45b01d6b47e84388f6acc50c514626d53adaea6bb78b71a9
3
+ metadata.gz: c65b4be0591e353be4e06714f921cafbf19baff34208cafe031fcf0836733d42
4
+ data.tar.gz: 8ab44e2760890c2d006b885030022b9136edb2dbe47661e1ddefb8954a2a7ed4
5
5
  SHA512:
6
- metadata.gz: e47f3a1181804194ceaa5c1787b720df7df1a5eb9e3bdecf3f9cf3d3e622d79fb11f7aa4d1d5b0c75b971f70e02f2e8910bb75ae4711e1bf096ad1cf49241474
7
- data.tar.gz: e65d97dd4e0730aaa0023aaf8cc8405b770af6e85f566a47aeab5c39ef0dd38a24d143586ef2064bfc05dd330a4df504c73901d7fdc2cb93ce6cab5ba585cbbd
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: "inventlist/rails-markup", require: "rails_markup"
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/inventlist/rails-markup
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
- scope.find_each do |ann|
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RailsMarkup
4
- VERSION = "1.2.0"
4
+ VERSION = "1.2.1"
5
5
  end
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.0
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/inventlist/rails-markup
164
+ homepage: https://github.com/nauman/rails-markup
165
165
  licenses:
166
166
  - MIT
167
167
  metadata:
168
- homepage_uri: https://github.com/inventlist/rails-markup
169
- source_code_uri: https://github.com/inventlist/rails-markup
170
- changelog_uri: https://github.com/inventlist/rails-markup/blob/main/CHANGELOG.md
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