somaticio / tensorflow.rb

tensorflow for ruby
BSD 3-Clause "New" or "Revised" License
827 stars 66 forks source link

Remove *.time files from repository #22

Closed geoffreylitt closed 8 years ago

geoffreylitt commented 8 years ago

*.time files being present in the ext/ directory appear to interfere with the creation of intermediate directories when running make install. This removes those files from the repo and gitignores them.

It looks like @nethsix discovered this issue and temporarily fixed it with this commit, but then the files weren't gitignored so they came back. I think this will fix it for good.

Before this change, when running specs I was getting errors like ../tensorflow.rb:3:in 'require': cannot load such file -- sciruby/Tensorflow (LoadError). After this change, I don't get that error.

nethsix commented 8 years ago

@geoffreylitt Great fix!

arafatkatze commented 8 years ago

@geoffreylitt Thanks for this.