Tagged Questions
0
votes
1answer
91 views
Phusion Passenger Throwing Error After Upgrading Gems
I am currently running Redmine, and while updating the gems, Phusion Passenger is throwing errors that it is unable to locate the required libraries. It seems that it keeps looking for the older ...
0
votes
1answer
65 views
What are ruby 1.9.3 dependencies
I'm trying to determine the fewest packages that I need to install before installing ruby from source. I've dug through ruby source a little and I figured it might be faster to ask here.
Does anyone ...
2
votes
2answers
64 views
Gemfile Dependencies for Different Environments
So I have particular gems that I want to run on Mac OSX, some that I want to run on Linux and some that I want to run on Windows for my different development environments due to specific dependencies ...
1
vote
2answers
62 views
How to blacklist directory loading in Rails?
I want to disable ActiveAdmin when running the tests.
So I add require: false to the Gemfile and checking if defined?(ActiveAdmin) in routes and initializer.
But Rails still loads the models form ...
1
vote
1answer
139 views
How does the ruby gem dependency resolution work?
I'd like to know how gem handles its dependency resolution.
For example when I want to install the gem foodcritic, it has a dependency on nokogiri in the version 1.5.0.
I unpacked ...
2
votes
1answer
58 views
understanding gem spec versions
I'm using the compass ruby gem (version 0.7.11), and when I run gem spec compass, part of the output is:
dependencies:
- !ruby/object:Gem::Dependency
name: sass
requirement: ...
5
votes
2answers
112 views
What are best practices for using require in Ruby?
Some models require other models to be loaded first. But each required file only needs to be loaded once.
What is the best way to manage this? Put all the require lines in a file (like init.rb), or ...
1
vote
2answers
137 views
When downgrading a gem, can bundler automatically downgrade the gem's dependencies along with it?
Earlier I changed a gem version in the Gemfile for my Rails project. I ran bundler update gemname, and this installed more up-to-date versions of several dependencies, which kind of surprised me.
...
0
votes
1answer
88 views
Maintaining a forked gem and forked dependencies
I'm using a ruby project which consists of one main gem (let's call it SuperGem) and several smaller gems which it depends on. The project is on Github and I've forked it and am maintaining my own ...
0
votes
3answers
50 views
How can I refactor these methods and remove the dependency checks on the first lines
I'm essentially making a form that pre-calculates most of its fields.
So, I have a bunch of methods that rely on previous methods, or should return nil. At the moment I'm doing a series of checks, and ...
0
votes
1answer
71 views
How do I check the dependencies of an older version of a gem?
How do I check the dependencies of an older version of a gem? The 'gem dependency' command appears to only work with the newest version, despite having a -v option (version) in the 'gem help ...
1
vote
2answers
150 views
Bundler: find which gem depends on this?
The backports library is installed when I run bundle install but I don't know which gem requires this - is there a way to get bundler to tell me this, or is there some other way to find this out?
I ...
1
vote
1answer
129 views
Calling an external rake task from Rails: dependency issues
I am currently developing a standalone ruby application alongside a Rails application that works as its frontend. I am managing the dependencies of the Ruby app with Bundler, so there are two ...
1
vote
2answers
114 views
Can gems have circular dependencies?
I've developed a small gem ecosystem and certain features will result in them depending on each other.
Does RubyGems support circular dependencies? In other words, is it safe to push gems with these ...
0
votes
0answers
153 views
Gecoder Installation
Edit 4/5/2012
I posted an incorrect mkmf.log which is associated only gecoder and not gecoder-with-gecode. This is the correct version of the mkmf.log. http://pastebin.com/3yNpkvzw
Here is a link ...
0
votes
1answer
77 views
Find out binary dependencies of gem
I want to build rpm with my Ruby app and its gems. As far as some gems depends on binaries I want to find out them automatically. For example nokogiri gem depends on libxml. Can I fetch all this ...
1
vote
2answers
221 views
How to set some dependency between rspec examples?
What we need is to have one example run unless all its dependency has been run successfully.
I.e:
describe group_example do
it example_1 do
####
end
it example_2 do
####
...
2
votes
2answers
65 views
How do I properly package applications with rubygems?
I've been working on some utilities (not libraries) that I'd like to share. What is the proper way to use rubygems to package them? Are there any best practices?
Specifically, I'd like to know how to ...
1
vote
1answer
157 views
How does Rails 3 load the model layer in production mode and resolve model dependencies?
In other words, does it work similarly to development mode but caches the classes as they are required? Or are all models loaded upfront?
If the latter, how does Rails know to load a model which is a ...
10
votes
4answers
911 views
build a ruby gem and conditionally specify dependencies
I am working on a gem that has needs to set dependencies conditionally when the gem is installed. I've done some digging around
and it looks like i'm not alone in this need.
Rubygems: How do I add ...
2
votes
2answers
220 views
How do I find all gems which have a runtime dependency on a certain gem
How do I find all gems which have a runtime dependency on a certain gem.
e.g. How do I find all gems which are dependent on mongoid gem version 2.3.4
1
vote
1answer
217 views
java_import already initialized constant
I just started using JRuby and I create a small test file:
require 'java'
java_import java.io.File
f = File.new ARGV[0]
When I run the program like so: jruby test.rb file.txt
I get the following ...
5
votes
2answers
2k views
ruby: how to require correctly (to avoid circular dependencies)
today i was facing a strange problem:
got a 'missing method' error on a module, but the method was there and the file where the module was defined was required. After some searching i found a circular ...
2
votes
1answer
136 views
Bundler dependency ~> doesn't recognize beta versions from github properly
Here's a part of my Gemfile:
gem 'rails', "3.1.0"
gem "sprockets", :git => 'git://github.com/sstephenson/sprockets.git', :tag => "v2.0.0.beta.13"
When try to do bundle install, it says that ...
2
votes
1answer
112 views
Should I require explicitly all dependencies in every file?
I am asking this for Ruby, but I guess this principle can be applied to every project with multiple files. Say I have a main file e.g. application that requires some other modules model1 and model2. ...
0
votes
2answers
150 views
Which version of Padrino runs fine in Ruby 1.8.6?
Padrino 0.10 gem installed activesupprt 3.0.9 which requires ruby >= 1.8.7.
I am Working on Ruby 1.8.6 can any one suggest me which version of Padrino works fine with Ruby 1.8.6 ?
I don't want ...
16
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'
...
1
vote
1answer
265 views
Check system dependencies for a gem
How I can check which system libraries I need for my gems ?
For example the Mysql gem needs the mysql header files, rmagick requires imagemagick, and so on...
How I can list all libraries needed to ...
0
votes
2answers
793 views
Rails 3 / RVM - Acts_as_list compiled locally - Why Can't Ruby See This Gem?
I cannot figure out why rails/ruby cannot see this gem, despite each telling me that the gem is visible. I compiled this gem locally from a github branch since the main version seems to be broken in ...
3
votes
2answers
132 views
How often do you update the gems on an unreleased project?
I've got several side projects that are either still in dev or live for friends and family. The exception (modulecounts.com) is pretty trivial.
At work, in a larger organization, it seems like we ...
0
votes
2answers
440 views
Rails: Why don't the child classes get loaded when using class method to return attributes about child classes?
Hello I've been searching for a solution for this for a while. Using Rails 2.3.5
I have a parent class with several child classes and for the sake of not having a file that's 1500 lines long I have ...
3
votes
1answer
164 views
Do I need to add Bundler itself to the Gemfile?
When I'm using Bundler, do I need to list itself as a dependency in my Gemfile? After all, there are places in my code where I require it. For instance, when I'm doing the Bundler setup: require ...
9
votes
2answers
1k views
What is the right way to initialize a constant in Ruby?
I have a simple class that defines some constants, e.g.:
module Foo
class Bar
BAZ = "bof"
...
Everything is puppies and rainbows until I tell Rake to run all my Test::Unit tests. When it ...
2
votes
2answers
250 views
Managing gem versions/dependencies for Rails
Just a bit of background, I come from a strong C#/staticly typed background. Therefore I tend to think in terms of .dlls. So if I was working in a project, I'd reference my required dlls and that ...
6
votes
4answers
3k views
How do I check that all the dependencies of my installed Ruby gems are satisfied?
I must be missing something because last night I was astonished to find that googling for check gem dependencies and similar didn't reveal the answer for this.
I'm basically after a rough equivalent ...
4
votes
1answer
182 views
Ruby Gems with flexible gem dependencies?
I'm about to extract major functionality of a larger project into a ruby gem.
The little framework I created uses a few additional gems, for different import/export options. Ie.
FasterCSV (for ...
4
votes
2answers
1k views
How do I get Rails to exclude some bundled gems from plugin-loading?
I have a Rails application that uses Bundler for dependency management. I've got the following in my Gemfile:
# default group:
gem 'json'
group 'development' do
gem 'my_profiler'
end
group 'test' ...
1
vote
1answer
291 views
What is the correct (modern) way to require one gem within another?
I've just recently started writing my own gems. One of them requires the gnuplot gem, like so:
module Rocker
require "gnuplot"
# ... module code here ...
end
It works great, right up until I ...
0
votes
1answer
129 views
Why won't Bundler install vPim?
I have the following in my Gemfile:
clear_sources
bundle_path "vendor/bundler_gems"
source "http://gemcutter.org"
...
gem "vpim", "~> 0.658"
# a whole bunch of other gems
When I ...
1
vote
2answers
1k views
Fix an external dependency of a ruby gem
I am currently trying to install the gem nfoiled, which provides a ruby interface to ncurses.
I do this by using gem install elliottcable-nfoiled as suggest in the README. Downloading it manually from ...
1
vote
1answer
265 views
Ruby Gems Either/Or Dependency?
My VCR gem currently depends on FakeWeb. I have it declared as a dependency in my gemspec.
I'm working with the auther of WebMock (a library that provides similar functionality to FakeWeb) to get ...
1
vote
2answers
559 views
gem2rpm includes all dependencies instead of including only runtime dependencies
Version 0.6.0 of gem2rpm includes all (development and runtime) dependencies for a given Gem.
Example: Rack Gem (http://rubygems.org/gems/rack) Version 1.1.0 has no runtime dependencies, but six ...
1
vote
6answers
1k views
require library returns 'missing file' message
I have a small application which I created using jeweler. The jeweler generates a lib/ directory, where I suppose to write my code.
This gem I'm creating depends on the httparty gem, so, in my ...
7
votes
1answer
6k views
“require File.dirname(__FILE__)” — how to safely undo filesystem dependency?
Some Ruby librararies I'm using use require statements like this:
require File.dirname(__FILE__) + '/specification_helper.rb'
lib_dir = File.expand_path(File.join(File.dirname(__FILE__), "lib"))
...
14
votes
5answers
8k views
Do I have to manually uninstall all dependent gems?
I tried to uninstall datamapper using the command gem uninstall dm-core.
But it seems that a whole bunch of dependent gems also need to be uninstalled.
C:\>gem uninstall dm-core
You have ...
4
votes
2answers
941 views
Rails: Best practice for model dependency class locations?
I have a rails app moving along fairly well, but the fact that I'm doing this myself means that some poor sod is eventually going to see this and say, "What the hell were you thinking? Why did you ...
5
votes
2answers
2k views
Circular Dependencies in Ruby
Let's say we have two classes, Foo and Foo Sub, each in a different file, foo.rb and foo_sub.rb respectively.
foo.rb:
require "foo_sub"
class Foo
def foo
FooSub.SOME_CONSTANT
end
end
...