aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorDavid Dollar <ddollar@gmail.com>2008-04-11 18:25:11 -0400
committerDavid Dollar <ddollar@gmail.com>2008-04-11 18:25:11 -0400
commit4364c361b599f99bc2345ce4eb2d145b07ed8a0f (patch)
tree1fb87b58438790cda9308ee3cba05427b577b334 /railties
parente89093aeb4b1f544cb54caf54a0374075250cc59 (diff)
downloadrails-4364c361b599f99bc2345ce4eb2d145b07ed8a0f.tar.gz
rails-4364c361b599f99bc2345ce4eb2d145b07ed8a0f.tar.bz2
rails-4364c361b599f99bc2345ce4eb2d145b07ed8a0f.zip
Now that we have gems:unpack and gems:build allowing for integration of
100% of your gems into vendor/ it would be nice to have the ability to automatically unpack the full dependency tree of your specified gems. This patch adds the rake task gems:unpack:dependencies to do this. Usage: gems:unpack:dependencies # unpack all dependencies gems:unpack:dependencies GEM=foo # unpack all dependencies for gem foo
Diffstat (limited to 'railties')
-rw-r--r--railties/lib/rails/gem_dependency.rb34
-rw-r--r--railties/lib/tasks/gems.rake16
2 files changed, 43 insertions, 7 deletions
diff --git a/railties/lib/rails/gem_dependency.rb b/railties/lib/rails/gem_dependency.rb
index 45d838bcc1..3985443ceb 100644
--- a/railties/lib/rails/gem_dependency.rb
+++ b/railties/lib/rails/gem_dependency.rb
@@ -8,11 +8,17 @@ module Rails
def initialize(name, options = {})
require 'rubygems' unless Object.const_defined?(:Gem)
- @name = name.to_s
- if options[:version]
+
+ if options[:requirement]
+ @requirement = options[:requirement]
+ elsif options[:version]
@requirement = Gem::Requirement.create(options[:version])
- @version = @requirement.instance_variable_get("@requirements").first.last
+ else
+ raise ArgumentError.new('Must pass either :version or :requirement')
end
+
+ @version = @requirement.instance_variable_get("@requirements").first.last if @requirement
+ @name = name.to_s
@lib = options[:lib]
@source = options[:source]
@loaded = @frozen = @load_paths_added = false
@@ -35,6 +41,14 @@ module Rails
puts $!.to_s
end
+ def dependencies
+ all_dependencies = specification.dependencies.map do |dependency|
+ GemDependency.new(dependency.name, :requirement => dependency.version_requirements)
+ end
+ all_dependencies += all_dependencies.map(&:dependencies).flatten
+ all_dependencies.uniq
+ end
+
def gem_dir(base_directory)
File.join(base_directory, specification.full_name)
end
@@ -64,10 +78,6 @@ module Rails
Gem::GemRunner.new.run(install_command)
end
- def specification
- @spec ||= Gem.source_index.search(Gem::Dependency.new(@name, @requirement)).sort_by { |s| s.version }.last
- end
-
def unpack_to(directory)
FileUtils.mkdir_p directory
Dir.chdir directory do
@@ -83,6 +93,16 @@ module Rails
end
end
+ def ==(other)
+ self.name == other.name && self.requirement == other.requirement
+ end
+
+private ###################################################################
+
+ def specification
+ @spec ||= Gem.source_index.search(Gem::Dependency.new(@name, @requirement)).sort_by { |s| s.version }.last
+ end
+
def install_command
cmd = %w(install) << @name
cmd << "--version" << "#{@requirement.to_s}" if @requirement
diff --git a/railties/lib/tasks/gems.rake b/railties/lib/tasks/gems.rake
index c8d5167be6..c18fea2d60 100644
--- a/railties/lib/tasks/gems.rake
+++ b/railties/lib/tasks/gems.rake
@@ -39,4 +39,20 @@ namespace :gems do
gem.unpack_to(File.join(RAILS_ROOT, 'vendor', 'gems')) if gem.loaded?
end
end
+
+ namespace :unpack do
+ desc "Unpacks the specified gems and its dependencies into vendor/gems"
+ task :dependencies => :unpack do
+ require 'rubygems'
+ require 'rubygems/gem_runner'
+ Rails.configuration.gems.each do |gem|
+ next unless ENV['GEM'].blank? || ENV['GEM'] == gem.name
+ gem.dependencies.each do |dependency|
+ dependency.add_load_paths # double check that we have not already unpacked
+ next if dependency.frozen?
+ dependency.unpack_to(File.join(RAILS_ROOT, 'vendor', 'gems'))
+ end
+ end
+ end
+ end
end \ No newline at end of file