mirror of
https://github.com/lloeki/package-ruby.git
synced 2025-12-06 01:54:41 +01:00
preview
This commit is contained in:
commit
32b99b62bf
20 changed files with 644 additions and 0 deletions
7
test/bar.rb
Normal file
7
test/bar.rb
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
import 'foo'
|
||||
|
||||
HELLO = 'BAR'
|
||||
|
||||
def hello
|
||||
"i am bar and I can access #{foo.name}"
|
||||
end
|
||||
5
test/foo.rb
Normal file
5
test/foo.rb
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
HELLO = 'FOO'
|
||||
|
||||
def hello
|
||||
'i am foo'
|
||||
end
|
||||
5
test/foo/baz.rb
Normal file
5
test/foo/baz.rb
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
HELLO = 'BAZ'
|
||||
|
||||
def hello
|
||||
'i am baz'
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue