0
votes
0answers
31 views

What are the best practices for updating a gemspec's file list?

Regarding the files list for gemspecs. I've noticed that jeweler updates this list manually with a listing of files in the project. e.g. Gem::Specification.new do |s| # stuff s.files = [ ...
0
votes
1answer
31 views

Does gem spec. name have to equal the gem constant name?

tl;dr I'm trying to break out a part of a larger application as a mountable engine. The engine will exist in different flavors, each contained in their own gem. I can't get the gem name be different ...
0
votes
1answer
133 views

Why is bundler using the wrong gemspec file?

I've got a custom gem that has been working just fine with regards to bundling, building, distributing, & implementing. The gem is the core of a framework from which other gems are derived. ...
0
votes
1answer
612 views

How to fix an invalid gemspec?

When I install a gem from github it gives me the error: number_internationalizer at /usr/local/rvm/gems/ruby-1.9.3-p194@number_internationalizer/bundler/gems/number_internationalizer-c0d642b04e87 did ...
2
votes
3answers
262 views

Gemspec: How can I specify dependencies which don't have to be auto-required?

I wrote a gem with a certain array of dependencies, and some of them I'd like not to have implicitly required when bundled into another project. An example is the uuidtools gem, which I only want to ...
1
vote
1answer
38 views

Is there any way to add a conflict to a gemspec

I'm making a gem called something like ugly_fork_of_foo. Can I add something to my gemspec to tell the system that ugly_fork_of_foo conflicts with foo, that both can't be installed simultaneously?
0
votes
0answers
59 views

Is there a way to skip rdoc and ri generation via .gemspec?

I am distributing gem and one of my dependencies has an error when generating rdoc and ri for activesupport gem. Is there a way to skip generation of rdoc and ri via .gemspec? Please keep in mind ...
2
votes
1answer
91 views

Gem definition: Ignore extconf.rb in JRuby

I have a gem with a C extension and java extension which installs fine in JRuby via rbenv, but fails to install in JRuby via RVM. The gemspec and project are on Github. I have tried explicitly listing ...
1
vote
0answers
112 views

Adding multiple gem dependencies in gemspec

How do you guys add multiple development/runtime dependencies to your gemspec? This is the way I do it: spec.add_development_dependency 'example1', '~> 1.1', '>= 1.1.4' ...
4
votes
2answers
191 views

How to package application layout into a Ruby gem?

I'm working on a project comprising three different applications. They are supposed to share some models and the outer layout. To avoid code duplication, I'm trying to extract the application layout ...
1
vote
2answers
376 views

How to use 'debugger' and 'pry' when developing a gem? (Ruby)

I'm developing a gem, and my Gemfile looks like this: source :rubygems gemspec group :development, :test do gem "pry" gem "debugger" gem "rake" end However, I don't want people to have to ...
19
votes
3answers
6k views

Invalid gemspec -Illformed requirement [“#<YAML::Syck::DefaultKey:0xb5f9c990> 3.2.0”]

Invalid gemspec in [/usr/lib/ruby/gems/1.8/specifications/activemodel-3.2.0.gemspec]: Illformed requirement ["#<YAML::Syck::DefaultKey:0xb5f9c990> 3.2.0"] From trying to do a sudo gem update ...
5
votes
1answer
1k views

gem.add_dependency Jeweler how do you format a git source?

I'm trying to specify a git source in my Jeweler Rake file: gem.add_dependency 'myapp', :git => "git@github.com:myaddress/myapp.git", :branch => "mybranch" but I hit a format error. Do you ...
0
votes
2answers
2k views

WARNING: Invalid .gemspec format in '/Library/Ruby/Gems/1.8/specifications/rack-1.3.5.gemspec'

I am trying to run a Sinatra app, and am failing because rack isn't being found. I am getting the following error: WARNING: Invalid .gemspec format in ...
6
votes
1answer
1k views

Trying to build a gem, getting a Gem::InvalidSpecificationException: “[…] are not files”

I'm trying to build a custom gem I wrote called client_package but it is failing. My directory structure looks like this: client_package Gemfile Gemfile.lock client_package.gemspec ...
0
votes
2answers
621 views

Installing RedCloth gem from github with bundler

I'm running into a problem with the latest versioned release of the RedCloth gem, 4.2.7. Specifically, it's the gcc 4.6 compile issue that was resolved in this commit, but has not yet been included ...
17
votes
1answer
5k views

Ruby Gemspec Dependency: Is possible have a git branch dependency?

Is possible have a git branch dependency, inside mygem.gemspec ? I'm thinking something similar to the following: gem.add_runtime_dependency 'oauth2', :git => 'git@github.com:lgs/oauth2.git' ...
0
votes
2answers
142 views

Can I specify dynamic dependencies for my gem based on command line input?

Intro: I'm working on a gem that, by default, will pull information out of some XML data and do some sort of processing on the document. I'm using nokogiri to parse the XML. However, I wish to allow ...
9
votes
1answer
330 views

Jeweler adds circular dependency to my gem

Gem's(gemfoo) jeweler declaration in Rakefile looks like that: Jeweler::Tasks.new do |gem| #truncated gem.add_runtime_dependency 'nokogiri', '~> 1.4.1' gem.add_development_dependency ...
2
votes
2answers
4k views

In Rails 3's “bundle install” of local gem (frozen gem), keep getting “Source does not contain any versions of …”?

I am using a gem which is in vendor/gems/some-api-0.1.0, copied over from another project, and added to Gemfile: gem 'some-api', :path => '~/development/myproj/vendor/gems/some-api-0.1.0' but if ...
5
votes
2answers
1k views

Attemping to vendorize a gem into bundler with Rails 3, but Gem has no Gemspec

Following these easy steps: gem unpack spree_easy_contact -v 1.0.2 --target vendor/gems Unpacked gem: '../vendor/gems/spree_easy_contact-1.0.2' And then in my Gemfile I add this line : gem ...
2
votes
2answers
1k views

What's the best way to do Ruby gemspec creation and dependency management?

Over the last few months, there have been a number of rapid developments in the state of Ruby dependency management and gem creation, to the point where I've been having trouble keeping up with ...