Skip to content

Commit af070c9

Browse files
transclaude
andcommitted
Maintenance release v0.9.2 — modernize project tooling
Replace custom Indexer system with standard gemspec, Travis CI with GitHub Actions, and Assembly/Reapfile with Rakefile. Simplify version handling. 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 c083f76 commit af070c9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+282
-2709
lines changed

.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 test

.gitignore

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
1-
.reap/digest
21
.yardoc
32
doc
43
log
5-
pkg/*.gem
6-
pkg/*.gz
4+
pkg
75
tmp
8-
DEMO*
9-
web
10-
work/sandbox
6+
Gemfile.lock
7+
*.gem

.index

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

.ruby

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

.travis.yml

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

Assembly

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

Config.rb

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

Gemfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
source "http://rubygems.org"
2-
gemspec :path=>'pkg'
1+
source "https://rubygems.org"
2+
3+
gemspec

HISTORY.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# RELEASE HISTORY
22

3+
## 0.9.2 / 2026-03-31
4+
5+
Maintenance release. Modernized project tooling and cleaned up documentation.
6+
7+
Changes:
8+
9+
* Replace custom Indexer system with standard gemspec.
10+
* Replace Travis CI with GitHub Actions.
11+
* Replace Assembly/Reapfile with Rakefile.
12+
* Simplify version handling (VERSION constant in module).
13+
* Fix typos and update URLs to HTTPS.
14+
* Move site from gh-pages to docs/.
15+
* Remove obsolete files.
16+
* Clean up .gitignore.
17+
18+
319
## 0.9.1 / 2012-03-17
420

521
Thie release fixes some evaluation scope issues, improves how omit and skip

Indexfile

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

0 commit comments

Comments
 (0)