The gemspecs tag has no wiki summary.
0
votes
1answer
11 views
Different gemspec code
I have a local and production rails app running. Having problems, so I did a diff and found amoung many things, but the most curious was that the gemspec was different! For the same gemspec: ...
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 = [
...
2
votes
1answer
44 views
Loading local gems through Bundler and mounted apps
I'm creating a gem (let's call it mygem) that is essentially a Sinatra server intended to be mounted within Rack based apps.
Inside my gem's gemspec file, I have the following:
gem.add_dependency ...
0
votes
1answer
34 views
How do i use a dependency from github in my gemspec?
I currently have the following in my Gemfile:
gem 'voteable_mongo'#, :github => 'kamilski81/voteable_mongo'
and I migrating my models into a .gemspec, but i'm not sure how this would look ...
1
vote
1answer
39 views
How do i get rspec to read the dependencies in my gemspec?
When I run 'rspec' or 'bundle exec rspec' it doesn't let me use the dependencies in my .gemspec file. Do I have to repeat myself and break the DRY principle and display my gems in Gemfile and ...
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 ...
1
vote
1answer
16 views
How to develop gems where one is dependent on the other
I have a gem A which has a dependency on gem B. Both gems are my own and are currently in private development. I have no plans to publish these to rubygems.
I want to use gem A in my rails app.
...
1
vote
1answer
32 views
How to use a private gem server hosted gem when building another gem
If I've built a private gem (hosted internally at my company, for instance), then I want to reuse that gem in another gem (not app!) that I'm building, how do I do that?
Where do I put my ...
0
votes
0answers
153 views
Invalid gemspec error
So I used to have a different gemspec error and followed a stackoverflow thread and did the gem update --system.
I got
> * 1 bug fix:
>
> * Install the .pem files properly. Fixes #320 ...
0
votes
0answers
66 views
How to resolve invalid gemspec with c++ extended ruby?
I followed this guide…
http://guides.rubygems.org/c-extensions/
…to create a c++-extension, but i have a problem whith getting the gemspec right. of course, when installing it with bundler, i want ...
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
2answers
378 views
How to add dependency of a local gem to a rails plugin/engine, in .gemspec file
I had tried in this way:
s.add_dependency 'gem', :path => '../gem'
like add gem in the gemfile, but it doesn't work, and will cause this error:
...
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 ...
0
votes
1answer
76 views
How to consume gemspec as supplied by RubyGems program `gem specification` command?
Here's a question for you:
The RubyGems command-line package manager gem when searching for a software package will by default only return the name and version number
$ gem search -r fibonacci
*** ...
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 ...
2
votes
1answer
42 views
How to do an “OR” when requiring a Gem version
Currently I have a Gemspec that requires a specific version of Rails 3.x with Rails > 3.1:
Gem::Specification.new do |s|
# (...)
s.add_dependency "railties", "~> 3.1"
# (...)
end
I am ...
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'
...
0
votes
2answers
60 views
How do I view my gem's (or any other gem's) gem.description and gem.summary texts (.gemspect items) from the command line?
The .gemspec file I so carefully documented when I created my gem, how do I access its contents? Specifically I'd like to access the gem.description and gem.summary entries because I put some very ...
0
votes
1answer
38 views
Gem mongo_mapper_ext (0.2.4) has an invalid gemspec
I'm trying to bundle my Rails app properly but when i add the mongo_mapper_ext gem to the Gemfile i always get an error like:
Unfortunately, the gem mongo_mapper_ext (0.2.4) has an invalid
...
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
375 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 ...
8
votes
1answer
1k views
What does $:.push do in ruby?
I found this in Gemspec file of surveyor gem. What does the following line do?
$:.push File.expand_path("../lib", __FILE__)
require "surveyor/version"
Why does the $:.push thing do? To me it looks ...
0
votes
1answer
169 views
during a local gem install of the gem I created I get a “Unable to resolve dependencies”?
why would I get this error when trying to do a local install of the gem I just created. Note I do not want to publish it out on internet, just use it myself internally:
MacBook-Pro:$ sudo gem ...
3
votes
1answer
512 views
Any other way to circumvent the Illformed requirement YAML::Syck::DefaultKey errors then to upgrade RubyGems?
I am getting Invalid gemspec in [path/to/vendor/bundle/spree_api-1.0.0.gemspec]: Illformed requirement ["#<YAML::Syck::DefaultKey:0x2ac381f81938> 1.0.0"] for several gems (all Spree, and its ...
0
votes
1answer
151 views
How can I get Prawn from :git in my Gemfile?
This is Rails 2.3.8, I am using Bundler 1.0.21 and RubyGems 1.6.2 on a Mac.
When I do:
bundle install
I am met with:
"PRAWN_VERSION = \"1.0.0.rc1\"\n\nGem::Specification.new do |spec|\n ...
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 ...
3
votes
1answer
1k views
Strange errors when installing my gem
I just released v2.0.0 of the ginjo-rfm gem. When I install this gem on a stock Snow Leopard machine (rubygems version 1.3.5), I get the following error:
admin$ sudo gem install ginjo-rfm --no-rdoc ...
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
1k views
gem dependency version conflicts between a gem's spec, bundler, and gem install
I'm trying to install a gem, meta_search-1.1.0.pre2. The gem's spec, bundler, and rubygems each report/install different dependency version requirements.
I have a new rails3 project (here are my ...
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 ...
0
votes
2answers
691 views
gemspec dependencies definition and require conflict
I have a conflict between the gem dependencies definitions and the require of these gems.
I have this:
# Gemfile
source "http://rubygems.org"
gemspec
-
# my_gem.gemspec
$:.push ...
4
votes
1answer
194 views
Is there a way to print a message after a user installs a Ruby gem?
Is there a way to configure a gem's gemspec to print an important informational message right after someone downloads and installs the gem using gem install?
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
3answers
2k views
Unable to run rake after updating rails versions
I have upgraded to rails 2.3.11 and and ruby 1.9.2 as some of my gems were incompatible with previous version. Now I am unable to execute rake command. I am getting following error when i do rake ...
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
1answer
811 views
Gem development with Bundler: include or exclude Gemfile?
I'm developing a gem locally. It's a command-line utility that only has test dependencies, and my Gemfile looks like this:
source :rubygems
gemspec
group :test do
gem "cucumber"
gem "aruba"
...
5
votes
2answers
4k views
Specify a plugin as gem from github in Gemfile
I am including 'acts_as_rateable' gem in my Gemfile like this
gem 'acts_as_rateable', :git => 'git://github.com/azabaj/acts_as_rateable.git'
and then when I do bundle install it gives me this error ...
2
votes
1answer
96 views
What's the easiest way to maintain a patched set of rails gems, with bundler?
We're transitioning from 'frozen' rails gems to using bundler and would like to maintain the rails gems with patches, merges etc. say from an external git source. What's the easiest way to set this ...
0
votes
2answers
157 views
Questions about building a new gem using Wycats template
I'm writing a new gem I'm basing off of Yehuda's new gem template and I'm slightly confused. Having a Gemfile with dependencies, and also specifying a gemspec with dependencies seems redundant to me. ...
1
vote
1answer
172 views
How do I get the version from a gemspec file?
Is there a clean way to extract the version string from a .gemspec file? (The gem is not yet installed)
e.g. somethingcool.gemspec is
Gem::Specification.new do |s|
s.name = "somethingcool"
...
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 ...
