Skip to content

Commit 0f28ea6

Browse files
committed
Example files for #433.
1 parent 9fb42b6 commit 0f28ea6

4 files changed

Lines changed: 26 additions & 0 deletions

File tree

examples/issue433/Gemfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
source 'https://rubygems.org'
2+
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
3+
4+
#ruby '2.7.5'
5+
6+
gem 'rdf', path: '../..'
7+
gem 'byebug'
8+
gem 'amazing_print'

examples/issue433/README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# rdf-issue
2+
3+
```
4+
bundle install
5+
6+
bundle exec ruby test.rb
7+
```
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
module Something
2+
module Enumerator
3+
end
4+
end

examples/issue433/test.rb

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
require 'rdf'
2+
require 'rdf/mixin/enumerable'
3+
require 'rdf/model/list'
4+
require './something/enumerator'
5+
require 'enumerator'
6+
7+
puts "All OK!"

0 commit comments

Comments
 (0)