├── .document ├── .github ├── dependabot.yml └── workflows │ ├── push_gem.yml │ ├── sync-ruby.yml │ └── test.yml ├── .gitignore ├── .rdoc_options ├── BSDL ├── COPYING ├── Gemfile ├── README.md ├── Rakefile ├── lib └── tempfile.rb ├── tempfile.gemspec └── test ├── lib └── helper.rb └── test_tempfile.rb /.document: -------------------------------------------------------------------------------- 1 | BSDL 2 | COPYING 3 | README.md 4 | lib/ 5 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/tempfile/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/push_gem.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/tempfile/HEAD/.github/workflows/push_gem.yml -------------------------------------------------------------------------------- /.github/workflows/sync-ruby.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/tempfile/HEAD/.github/workflows/sync-ruby.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/tempfile/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/tempfile/HEAD/.gitignore -------------------------------------------------------------------------------- /.rdoc_options: -------------------------------------------------------------------------------- 1 | --- 2 | main_page: README.md 3 | -------------------------------------------------------------------------------- /BSDL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/tempfile/HEAD/BSDL -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/tempfile/HEAD/COPYING -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/tempfile/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/tempfile/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/tempfile/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/tempfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/tempfile/HEAD/lib/tempfile.rb -------------------------------------------------------------------------------- /tempfile.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/tempfile/HEAD/tempfile.gemspec -------------------------------------------------------------------------------- /test/lib/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/tempfile/HEAD/test/lib/helper.rb -------------------------------------------------------------------------------- /test/test_tempfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/tempfile/HEAD/test/test_tempfile.rb --------------------------------------------------------------------------------