aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/tasks/gems.rake
blob: c18fea2d6099dd849bf5ae02d9036d45a6f89551 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
desc "List the gems that this rails application depends on"
task :gems => :environment do
  Rails.configuration.gems.each do |gem|
    code = gem.loaded? ? (gem.frozen? ? "F" : "I") : " "
    puts "[#{code}] #{gem.name} #{gem.requirement.to_s}"
  end
  puts
  puts "I = Installed"
  puts "F = Frozen"
end

namespace :gems do
  desc "Build any native extensions for unpacked gems"
  task :build do
    require 'rails/gem_builder'
    Dir[File.join(RAILS_ROOT, 'vendor', 'gems', '*')].each do |gem_dir|
      spec_file = File.join(gem_dir, '.specification')
      next unless File.exists?(spec_file)
      specification = YAML::load_file(spec_file)
      next unless ENV['GEM'].blank? || ENV['GEM'] == specification.name
      Rails::GemBuilder.new(specification, gem_dir).build_extensions
      puts "Built gem: '#{gem_dir}'"
    end
  end
  
  desc "Installs all required gems for this application."
  task :install => :environment do
    require 'rubygems'
    require 'rubygems/gem_runner'
    Rails.configuration.gems.each { |gem| gem.install unless gem.loaded? }
  end

  desc "Unpacks the specified gem into vendor/gems."
  task :unpack => :environment do
    require 'rubygems'
    require 'rubygems/gem_runner'
    Rails.configuration.gems.each do |gem|
      next unless !gem.frozen? && (ENV['GEM'].blank? || ENV['GEM'] == gem.name)
      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