F
Fabrice Fabrisss
Hello,
I'm developing a ruby gem that I would like to build and install LOCALLY
so that I could use it in some other projects. The commands I use are:
gem build gemname.gemspec
gem install gemnane-0.0.1.gem
But I think that my gem is not correctly installed because this command
gives me an empty list:
gem contents gemname
In my gemspec, I use:
s.files = `git ls-files`.split("\n")
What's wrong in my gem install process ? Thank you !
Fabrice
I'm developing a ruby gem that I would like to build and install LOCALLY
so that I could use it in some other projects. The commands I use are:
gem build gemname.gemspec
gem install gemnane-0.0.1.gem
But I think that my gem is not correctly installed because this command
gives me an empty list:
gem contents gemname
In my gemspec, I use:
s.files = `git ls-files`.split("\n")
What's wrong in my gem install process ? Thank you !
Fabrice