Skip to content

Commit ef7b4c6

Browse files
transclaude
andcommitted
Maintenance release v1.1.0 — modernize project tooling
Replace custom Indexer system with standard gemspec, Travis CI with GitHub Actions, and add Rakefile. Fix missing block parameter in Time typecast. Switch tests to minitest. Update URLs to HTTPS, clean up obsolete files and .gitignore. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent f9bdbf0 commit ef7b4c6

52 files changed

Lines changed: 92 additions & 2448 deletions

Some content is hidden

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

.gemspec

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

.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: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
*.lock
21
.yardoc
3-
doc/
4-
log/
5-
pkg/
6-
tmp/
7-
web/
8-
2+
doc
3+
log
4+
pkg
5+
tmp
6+
Gemfile.lock
7+
*.gem

.index

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

0 commit comments

Comments
 (0)