Skip to content

Commit 291cecc

Browse files
transclaude
andcommitted
Maintenance release v1.6.0 — modernize project tooling
Replace custom Indexer system with standard gemspec, Travis CI with GitHub Actions, and Assembly/detroit/ergo with Rakefile. Fix Fixnum reference for Ruby 3+ compatibility. Simplify version.rb. Fix typos, update URLs to HTTPS, move site from gh-pages to docs/, and clean up obsolete files. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 1700234 commit 291cecc

34 files changed

Lines changed: 676 additions & 1120 deletions

.github/workflows/test.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Test
2+
3+
on:
4+
push:
5+
branches: [master]
6+
pull_request:
7+
branches: [master]
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
strategy:
13+
matrix:
14+
ruby: ['3.1', '3.2', '3.3', '3.4']
15+
steps:
16+
- uses: actions/checkout@v4
17+
- uses: ruby/setup-ruby@v1
18+
with:
19+
ruby-version: ${{ matrix.ruby }}
20+
bundler-cache: true
21+
- run: bundle exec rake demo

.gitignore

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
1-
.reap/digest
2-
.rdoc
31
.yardoc
2+
doc
43
log
54
pkg
65
tmp
7-
doc
8-
web
9-
*.lock
6+
Gemfile.lock
107
*.gem

.index

Lines changed: 0 additions & 77 deletions
This file was deleted.

.travis.yml

Lines changed: 0 additions & 13 deletions
This file was deleted.

Assembly

Lines changed: 0 additions & 43 deletions
This file was deleted.

0 commit comments

Comments
 (0)