Displaying 2 results from an estimated 2 matches for "add_development_depend".
2012 Aug 02
1
Using pry-rails with a Rails engine.
...new Rails 3.2.6 engine via a command like this:
$ rails plugin new $engine_name --skip-bundle -d $database_type -T
--dummy-path=spec/dummy --full --mountable
Then, I set it up with RSpec 2.11.0, and included the "pry-rails" gem as a
dependency:
$ grep pry-rails $engine_name.gemspec s.add_development_dependency
''pry-rails'', ''~> 0.1.6''
However, when I start the Rails console from inside the dummy application,
Pry doesn''t seem to be working:
$ (cd spec/dummy/; rails console)
Loading development environment (Rails 3.2.6)
irb(main):001:0>
Has anyone...
2011 Jun 16
7
[PATCH] replace fchmod()-based heartbeat with raindrops
...+ b/unicorn.gemspec
@@ -35,6 +35,7 @@ Gem::Specification.new do |s|
# *strongly* recommended for security reasons.
s.add_dependency(%q<rack>)
s.add_dependency(%q<kgio>, ''~> 2.4'')
+ s.add_dependency(%w<raindrops>, ''~> 0.6'')
s.add_development_dependency(''isolate'', ''~> 3.1'')
s.add_development_dependency(''wrongdoc'', ''~> 1.5'')
--
Eric Wong