Skip to content

Instantly share code, notes, and snippets.

@sonalkr132
Last active June 4, 2020 14:18
Show Gist options
  • Save sonalkr132/c73fb008c733ce6f8fd204cf622d2631 to your computer and use it in GitHub Desktop.
Save sonalkr132/c73fb008c733ce6f8fd204cf622d2631 to your computer and use it in GitHub Desktop.
num=9
log_file_path = "/home/aditya/rubygems.org/exta-dep-check-#{num}.log"
log_file = File.open(log_file_path, 'w')
#versions = Version.joins("inner join dependencies on versions.id = dependencies.version_id").where("DATE_PART('minute', dependencies.created_at - versions.created_at) > 1").where("versions.indexed = 'true'").distinct("versions.id")
versions = Version.where("id < 101000").where("id % 10 = ?", num).where("versions.indexed = 'true'")
total = versions.count
dev_mis_match, run_mis_match, mis_match_total, processed = 0, 0, 0, 0
body= ""
versions.each do |version|
print format("\r%.2f%% (%d/%d) complete", processed.to_f / total * 100.0, processed, total)
full_name = version.full_name
number = version.number
version_id = version.id
deps = version.dependencies.to_a
spec_uri = URI("https://rubygems.org/quick/Marshal.4.8/#{full_name}.gemspec.rz")
http = Net::HTTP.new(spec_uri.host, spec_uri.port)
http.use_ssl = true
body = http.get(spec_uri.request_uri).body
spec = Gem::Util.inflate body
spec_obj = Marshal.load spec
spec_dev_deps = spec_obj.dependencies.map do |s|
next if s.kind_of?(Array)
s.name.to_s.strip.downcase if s.type == :development && Rubygem.where(name: s.name.to_s.strip).present?
end.compact.sort
spec_run_deps = spec_obj.dependencies.map do |s|
next if s.kind_of?(Array)
s.name.to_s.strip.downcase if s.type == :runtime && Rubygem.where(name: s.name.to_s.strip).present?
end.compact.sort
db_dev_deps = deps.map do |d|
d.rubygem.name.downcase if d.scope == "development" && d.rubygem.present?
end.compact.sort
db_run_deps = deps.map do |d|
d.rubygem.name.downcase if d.scope == "runtime" && d.rubygem.present?
end.compact.sort
msg = ""
inter = spec_run_deps & ["merb_datamapper", "time", "appengine-sdk", "rest_client"]
if spec_run_deps != db_run_deps #&& inter.empty?
run_diff = db_run_deps - spec_run_deps
run_mis_match+=1
msg =<<-MSG
spec and db run deps don't match for: #{full_name}
spec : #{spec_run_deps}
db : #{db_run_deps}
inter: #{db_run_deps & db_dev_deps}
diff : #{run_diff}
MSG
end
if spec_dev_deps != db_dev_deps
dev_diff = db_dev_deps - spec_dev_deps
dev_mis_match+=1
msg =<<-MSG
spec and db dev deps don't match for: #{full_name}
spec : #{spec_dev_deps}
db : #{db_dev_deps}
inter: #{db_run_deps & db_dev_deps}
diff : #{dev_diff}
MSG
end
processed+=1
if msg.present?
mis_match_total += 1
log_file << msg
end
rescue StandardError => e
processed+=1
log_file << "skipping #{version.inspect} #{e.message} #{body}\n"
end
log_file << "#{run_mis_match} run deps and #{dev_mis_match} dev deps mismatched in #{mis_match_total} versions\n"
log_file.close
spec and db run deps don't match for: hoe-git-1.3.0
spec : ["hoe"]
db : ["hoe", "hoe"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: hoe-git-1.1.0
spec : ["hoe"]
db : ["hoe", "hoe"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: searchlogic-1.6.3
spec : ["activerecord", "activesupport", "echoe"]
db : ["activerecord", "activesupport", "echoe", "echoe"]
inter: ["echoe"]
diff : []
spec and db run deps don't match for: newgem-1.5.0
spec : ["activesupport", "hoe", "redcloth", "rubigen", "syntax"]
db : ["activesupport", "hoe", "hoe", "redcloth", "rubigen", "syntax"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: newgem-1.4.1
spec : ["activesupport", "hoe", "redcloth", "rubigen", "syntax"]
db : ["activesupport", "hoe", "hoe", "redcloth", "rubigen", "syntax"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: newgem-1.2.1
spec : ["activesupport", "hoe", "redcloth", "rubigen", "syntax"]
db : ["activesupport", "hoe", "hoe", "redcloth", "rubigen", "syntax"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: newgem-1.0.5
spec : ["activesupport", "hoe", "redcloth", "rubigen", "syntax"]
db : ["activesupport", "hoe", "hoe", "redcloth", "rubigen", "syntax"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: twitterland-0.1.0
spec : ["httparty", "mash"]
db : ["httparty", "mash", "mash"]
inter: ["mash"]
diff : []
spec and db run deps don't match for: twitterland-0.0.3
spec : ["httparty", "mash"]
db : ["httparty", "mash", "mash"]
inter: ["mash"]
diff : []
spec and db run deps don't match for: newgem-1.0.0
spec : ["activesupport", "hoe", "redcloth", "rubigen", "syntax"]
db : ["activesupport", "hoe", "hoe", "redcloth", "rubigen", "syntax"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: authlogic-1.3.9
spec : ["activesupport", "echoe"]
db : ["activesupport", "echoe", "echoe"]
inter: ["echoe"]
diff : []
spec and db run deps don't match for: authlogic-1.3.8
spec : ["activesupport", "echoe"]
db : ["activesupport", "echoe", "echoe"]
inter: ["echoe"]
diff : []
spec and db run deps don't match for: hoe-git-1.1.2
spec : ["hoe"]
db : ["hoe", "hoe"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: shenandoah-0.1.1
spec : ["haml", "rails", "rake", "sinatra"]
db : ["haml", "rails", "rake", "rake", "sinatra"]
inter: ["rake"]
diff : []
spec and db run deps don't match for: twitterland-0.0.2
spec : ["httparty", "mash"]
db : ["httparty", "mash", "mash"]
inter: ["mash"]
diff : []
spec and db run deps don't match for: newgem-1.2.0
spec : ["activesupport", "hoe", "redcloth", "rubigen", "syntax"]
db : ["activesupport", "hoe", "hoe", "redcloth", "rubigen", "syntax"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: ember-0.0.0
spec : ["inochi"]
db : ["inochi", "inochi"]
inter: ["inochi"]
diff : []
spec and db run deps don't match for: acts_as_markup-0.1.0
spec : ["activerecord", "activesupport", "rdiscount"]
db : ["activerecord", "activesupport", "rdiscount", "redcloth"]
inter: []
diff : ["redcloth"]
spec and db run deps don't match for: newgem-1.0.4
spec : ["activesupport", "hoe", "redcloth", "rubigen", "syntax"]
db : ["activesupport", "hoe", "hoe", "redcloth", "rubigen", "syntax"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: newgem-1.4.0
spec : ["activesupport", "hoe", "redcloth", "rubigen", "syntax"]
db : ["activesupport", "hoe", "hoe", "redcloth", "rubigen", "syntax"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: newgem-1.5.2
spec : ["activesupport", "hoe", "redcloth", "rubigen", "syntax"]
db : ["activesupport", "hoe", "hoe", "redcloth", "rubigen", "syntax"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: shenandoah-0.0.0
spec : ["haml", "rake", "sinatra"]
db : ["haml", "rake", "rake", "sinatra"]
inter: ["rake"]
diff : []
spec and db run deps don't match for: searchlogic-1.6.2
spec : ["activerecord", "activesupport", "echoe"]
db : ["activerecord", "activesupport", "echoe", "echoe"]
inter: ["echoe"]
diff : []
spec and db run deps don't match for: ronin-0.2.4
spec : ["addressable", "chars", "contextify", "data_objects", "dm-core", "dm-predefined", "dm-types", "dm-validations", "do_sqlite3", "extlib", "hoe", "nokogiri", "parameters", "repertoire", "reverse-require"]
db : ["addressable", "chars", "contextify", "data_objects", "dm-core", "dm-predefined", "dm-types", "dm-validations", "do_sqlite3", "extlib", "hoe", "hoe", "nokogiri", "parameters", "repertoire", "reverse-require"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: rake_dmg-0.0.2
spec : ["rake"]
db : ["rake", "rake"]
inter: ["rake"]
diff : []
spec and db run deps don't match for: hoe-debugging-1.0.0
spec : ["hoe"]
db : ["hoe", "hoe"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: hoe-git-1.0.0
spec : ["hoe"]
db : ["hoe", "hoe"]
inter: ["hoe"]
diff : []
spec and db dev deps don't match for: evri-0.04
spec : ["hoe", "mocha"]
db : ["hoe"]
inter: []
diff : []
spec and db run deps don't match for: shoppr-0.1.0
spec : ["httparty", "mash"]
db : ["httparty", "mash", "mash"]
inter: ["mash"]
diff : []
spec and db run deps don't match for: twitterland-0.0.1
spec : ["httparty", "mash", "oauth"]
db : ["httparty", "mash", "mash", "oauth"]
inter: ["mash"]
diff : []
spec and db run deps don't match for: searchlogic-1.6.1
spec : ["activerecord", "activesupport", "echoe"]
db : ["activerecord", "activesupport", "echoe", "echoe"]
inter: ["echoe"]
diff : []
spec and db run deps don't match for: newgem-1.1.0
spec : ["activesupport", "hoe", "redcloth", "rubigen", "syntax"]
db : ["activesupport", "hoe", "hoe", "redcloth", "rubigen", "syntax"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: hoe-git-1.2.0
spec : ["hoe"]
db : ["hoe", "hoe"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: twitterland-0.2.1
spec : ["httparty", "mash"]
db : ["httparty", "mash", "mash"]
inter: ["mash"]
diff : []
spec and db run deps don't match for: newgem-1.3.0
spec : ["activesupport", "hoe", "redcloth", "rubigen", "syntax"]
db : ["activesupport", "hoe", "hoe", "redcloth", "rubigen", "syntax"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: newgem-1.0.3
spec : ["activesupport", "hoe", "redcloth", "rubigen", "syntax"]
db : ["activesupport", "hoe", "hoe", "redcloth", "rubigen", "syntax"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: remixr-0.1.0
spec : ["httparty", "mash"]
db : ["httparty", "mash", "mash"]
inter: ["mash"]
diff : []
spec and db dev deps don't match for: evri-0.03
spec : ["hoe", "mocha"]
db : ["hoe"]
inter: []
diff : []
spec and db run deps don't match for: twitterland-0.2.0
spec : ["httparty", "mash"]
db : ["httparty", "mash", "mash"]
inter: ["mash"]
diff : []
spec and db run deps don't match for: hoe-git-1.1.1
spec : ["hoe"]
db : ["hoe", "hoe"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: newgem-1.0.7
spec : ["activesupport", "hoe", "redcloth", "rubigen", "syntax"]
db : ["activesupport", "hoe", "hoe", "redcloth", "rubigen", "syntax"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: shenandoah-0.1.0
spec : ["haml", "rails", "rake", "sinatra"]
db : ["haml", "rails", "rake", "rake", "sinatra"]
inter: ["rake"]
diff : []
spec and db run deps don't match for: newgem-1.5.1
spec : ["activesupport", "hoe", "redcloth", "rubigen", "syntax"]
db : ["activesupport", "hoe", "hoe", "redcloth", "rubigen", "syntax"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: newgem-1.0.2
spec : ["activesupport", "hoe", "redcloth", "rubigen", "syntax"]
db : ["activesupport", "hoe", "hoe", "redcloth", "rubigen", "syntax"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: addresslogic-1.0.0
spec : ["echoe"]
db : ["echoe", "echoe"]
inter: ["echoe"]
diff : []
spec and db run deps don't match for: newgem-1.2.3
spec : ["activesupport", "hoe", "redcloth", "rubigen", "syntax"]
db : ["activesupport", "hoe", "hoe", "redcloth", "rubigen", "syntax"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: waves-0.7.1
spec : ["autocode", "choice", "daemons", "erubis", "extensions", "live_console", "markaby", "mongrel", "rack", "sequel"]
db : ["autocode", "choice", "daemons", "erubis", "extensions", "live_console", "markaby", "mongrel", "rack", "redcloth", "sequel"]
inter: []
diff : ["redcloth"]
spec and db run deps don't match for: authlogic-1.4.1
spec : ["activesupport", "echoe"]
db : ["activesupport", "echoe", "echoe"]
inter: ["echoe"]
diff : []
spec and db run deps don't match for: authlogic-1.4.0
spec : ["activesupport", "echoe"]
db : ["activesupport", "echoe", "echoe"]
inter: ["echoe"]
diff : []
spec and db run deps don't match for: taza-0.8.0
spec : ["hoe", "mocha", "rake", "rspec", "rubigen", "taglob"]
db : ["hoe", "hoe", "mocha", "rake", "rspec", "rubigen", "taglob"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: appengine-tools-0.0.2
spec : ["appengine-jruby-jars", "appengine-rack", "appengine-sdk"]
db : ["appengine-jruby-jars", "appengine-rack"]
inter: []
diff : []
spec and db run deps don't match for: twitterland-0.1.1
spec : ["httparty", "mash"]
db : ["httparty", "mash", "mash"]
inter: ["mash"]
diff : []
spec and db run deps don't match for: hoe-git-1.1.3
spec : ["hoe"]
db : ["hoe", "hoe"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: newgem-1.0.6
spec : ["activesupport", "hoe", "redcloth", "rubigen", "syntax"]
db : ["activesupport", "hoe", "hoe", "redcloth", "rubigen", "syntax"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: shenandoah-0.1.2
spec : ["haml", "rails", "rake", "sinatra"]
db : ["haml", "rails", "rake", "rake", "sinatra"]
inter: ["rake"]
diff : []
spec and db run deps don't match for: newgem-1.2.2
spec : ["activesupport", "hoe", "redcloth", "rubigen", "syntax"]
db : ["activesupport", "hoe", "hoe", "redcloth", "rubigen", "syntax"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: newgem-1.0.1
spec : ["activesupport", "hoe", "redcloth", "rubigen", "syntax"]
db : ["activesupport", "hoe", "hoe", "redcloth", "rubigen", "syntax"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: hoe-debugging-1.0.1
spec : ["hoe"]
db : ["hoe", "hoe"]
inter: ["hoe"]
diff : []
spec and db dev deps don't match for: evri-0.07
spec : ["hoe", "mocha"]
db : ["hoe"]
inter: []
diff : []
spec and db run deps don't match for: billboard-0.1.0
spec : ["httparty", "mash"]
db : ["httparty", "mash", "mash"]
inter: ["mash"]
diff : []
spec and db run deps don't match for: upcoming-events-0.0.1
spec : ["httparty", "mash"]
db : ["httparty", "mash", "mash"]
inter: ["mash"]
diff : []
spec and db run deps don't match for: taza-0.8.0
spec : ["hoe", "mocha", "rake", "rspec", "rubigen", "taglob"]
db : ["hoe", "hoe", "mocha", "rake", "rspec", "rubigen", "taglob"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: shenandoah-0.0.0
spec : ["haml", "rake", "sinatra"]
db : ["haml", "rake", "rake", "sinatra"]
inter: ["rake"]
diff : []
spec and db run deps don't match for: searchlogic-1.6.3
spec : ["activerecord", "activesupport", "echoe"]
db : ["activerecord", "activesupport", "echoe", "echoe"]
inter: ["echoe"]
diff : []
spec and db run deps don't match for: searchlogic-1.6.2
spec : ["activerecord", "activesupport", "echoe"]
db : ["activerecord", "activesupport", "echoe", "echoe"]
inter: ["echoe"]
diff : []
spec and db run deps don't match for: searchlogic-1.6.1
spec : ["activerecord", "activesupport", "echoe"]
db : ["activerecord", "activesupport", "echoe", "echoe"]
inter: ["echoe"]
diff : []
spec and db run deps don't match for: rake_dmg-0.0.2
spec : ["rake"]
db : ["rake", "rake"]
inter: ["rake"]
diff : []
spec and db run deps don't match for: newgem-1.4.1
spec : ["activesupport", "hoe", "redcloth", "rubigen", "syntax"]
db : ["activesupport", "hoe", "hoe", "redcloth", "rubigen", "syntax"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: newgem-1.4.0
spec : ["activesupport", "hoe", "redcloth", "rubigen", "syntax"]
db : ["activesupport", "hoe", "hoe", "redcloth", "rubigen", "syntax"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: newgem-1.3.0
spec : ["activesupport", "hoe", "redcloth", "rubigen", "syntax"]
db : ["activesupport", "hoe", "hoe", "redcloth", "rubigen", "syntax"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: newgem-1.2.3
spec : ["activesupport", "hoe", "redcloth", "rubigen", "syntax"]
db : ["activesupport", "hoe", "hoe", "redcloth", "rubigen", "syntax"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: newgem-1.2.2
spec : ["activesupport", "hoe", "redcloth", "rubigen", "syntax"]
db : ["activesupport", "hoe", "hoe", "redcloth", "rubigen", "syntax"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: newgem-1.2.1
spec : ["activesupport", "hoe", "redcloth", "rubigen", "syntax"]
db : ["activesupport", "hoe", "hoe", "redcloth", "rubigen", "syntax"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: newgem-1.2.0
spec : ["activesupport", "hoe", "redcloth", "rubigen", "syntax"]
db : ["activesupport", "hoe", "hoe", "redcloth", "rubigen", "syntax"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: newgem-1.1.0
spec : ["activesupport", "hoe", "redcloth", "rubigen", "syntax"]
db : ["activesupport", "hoe", "hoe", "redcloth", "rubigen", "syntax"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: newgem-1.0.7
spec : ["activesupport", "hoe", "redcloth", "rubigen", "syntax"]
db : ["activesupport", "hoe", "hoe", "redcloth", "rubigen", "syntax"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: newgem-1.0.6
spec : ["activesupport", "hoe", "redcloth", "rubigen", "syntax"]
db : ["activesupport", "hoe", "hoe", "redcloth", "rubigen", "syntax"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: newgem-1.0.5
spec : ["activesupport", "hoe", "redcloth", "rubigen", "syntax"]
db : ["activesupport", "hoe", "hoe", "redcloth", "rubigen", "syntax"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: newgem-1.0.4
spec : ["activesupport", "hoe", "redcloth", "rubigen", "syntax"]
db : ["activesupport", "hoe", "hoe", "redcloth", "rubigen", "syntax"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: newgem-1.0.3
spec : ["activesupport", "hoe", "redcloth", "rubigen", "syntax"]
db : ["activesupport", "hoe", "hoe", "redcloth", "rubigen", "syntax"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: newgem-1.0.2
spec : ["activesupport", "hoe", "redcloth", "rubigen", "syntax"]
db : ["activesupport", "hoe", "hoe", "redcloth", "rubigen", "syntax"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: newgem-1.0.1
spec : ["activesupport", "hoe", "redcloth", "rubigen", "syntax"]
db : ["activesupport", "hoe", "hoe", "redcloth", "rubigen", "syntax"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: newgem-1.0.0
spec : ["activesupport", "hoe", "redcloth", "rubigen", "syntax"]
db : ["activesupport", "hoe", "hoe", "redcloth", "rubigen", "syntax"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: ember-0.0.0
spec : ["inochi"]
db : ["inochi", "inochi"]
inter: ["inochi"]
diff : []
spec and db run deps don't match for: authlogic-1.4.1
spec : ["activesupport", "echoe"]
db : ["activesupport", "echoe", "echoe"]
inter: ["echoe"]
diff : []
spec and db run deps don't match for: authlogic-1.4.0
spec : ["activesupport", "echoe"]
db : ["activesupport", "echoe", "echoe"]
inter: ["echoe"]
diff : []
spec and db run deps don't match for: authlogic-1.3.9
spec : ["activesupport", "echoe"]
db : ["activesupport", "echoe", "echoe"]
inter: ["echoe"]
diff : []
spec and db run deps don't match for: authlogic-1.3.8
spec : ["activesupport", "echoe"]
db : ["activesupport", "echoe", "echoe"]
inter: ["echoe"]
diff : []
spec and db run deps don't match for: addresslogic-1.0.0
spec : ["echoe"]
db : ["echoe", "echoe"]
inter: ["echoe"]
diff : []
spec and db run deps don't match for: hoe-debugging-1.0.1
spec : ["hoe"]
db : ["hoe", "hoe"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: hoe-debugging-1.0.0
spec : ["hoe"]
db : ["hoe", "hoe"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: hoe-git-1.3.0
spec : ["hoe"]
db : ["hoe", "hoe"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: newgem-1.5.2
spec : ["activesupport", "hoe", "redcloth", "rubigen", "syntax"]
db : ["activesupport", "hoe", "hoe", "redcloth", "rubigen", "syntax"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: newgem-1.5.1
spec : ["activesupport", "hoe", "redcloth", "rubigen", "syntax"]
db : ["activesupport", "hoe", "hoe", "redcloth", "rubigen", "syntax"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: newgem-1.5.0
spec : ["activesupport", "hoe", "redcloth", "rubigen", "syntax"]
db : ["activesupport", "hoe", "hoe", "redcloth", "rubigen", "syntax"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: remixr-0.1.0
spec : ["httparty", "mash"]
db : ["httparty", "mash", "mash"]
inter: ["mash"]
diff : []
spec and db run deps don't match for: ronin-0.2.4
spec : ["addressable", "chars", "contextify", "data_objects", "dm-core", "dm-predefined", "dm-types", "dm-validations", "do_sqlite3", "extlib", "hoe", "nokogiri", "parameters", "repertoire", "reverse-require"]
db : ["addressable", "chars", "contextify", "data_objects", "dm-core", "dm-predefined", "dm-types", "dm-validations", "do_sqlite3", "extlib", "hoe", "hoe", "nokogiri", "parameters", "repertoire", "reverse-require"]
inter: ["hoe"]
diff : []
spec and db run deps don't match for: shenandoah-0.1.2
spec : ["haml", "rails", "rake", "sinatra"]
db : ["haml", "rails", "rake", "rake", "sinatra"]
inter: ["rake"]
diff : []
spec and db run deps don't match for: shenandoah-0.1.1
spec : ["haml", "rails", "rake", "sinatra"]
db : ["haml", "rails", "rake", "rake", "sinatra"]
inter: ["rake"]
diff : []
spec and db run deps don't match for: shenandoah-0.1.0
spec : ["haml", "rails", "rake", "sinatra"]
db : ["haml", "rails", "rake", "rake", "sinatra"]
inter: ["rake"]
diff : []
spec and db run deps don't match for: twitterland-0.0.3
spec : ["httparty", "mash"]
db : ["httparty", "mash", "mash"]
inter: ["mash"]
diff : []
spec and db run deps don't match for: twitterland-0.0.2
spec : ["httparty", "mash"]
db : ["httparty", "mash", "mash"]
inter: ["mash"]
diff : []
spec and db run deps don't match for: twitterland-0.0.1
spec : ["httparty", "mash", "oauth"]
db : ["httparty", "mash", "mash", "oauth"]
inter: ["mash"]
diff : []
spec and db run deps don't match for: billboard-0.1.0
spec : ["httparty", "mash"]
db : ["httparty", "mash", "mash"]
inter: ["mash"]
diff : []
spec and db run deps don't match for: twitterland-0.2.1
spec : ["httparty", "mash"]
db : ["httparty", "mash", "mash"]
inter: ["mash"]
diff : []
spec and db run deps don't match for: twitterland-0.2.0
spec : ["httparty", "mash"]
db : ["httparty", "mash", "mash"]
inter: ["mash"]
diff : []
spec and db run deps don't match for: twitterland-0.1.1
spec : ["httparty", "mash"]
db : ["httparty", "mash", "mash"]
inter: ["mash"]
diff : []
spec and db run deps don't match for: twitterland-0.1.0
spec : ["httparty", "mash"]
db : ["httparty", "mash", "mash"]
inter: ["mash"]
diff : []
spec and db run deps don't match for: shoppr-0.1.0
spec : ["httparty", "mash"]
db : ["httparty", "mash", "mash"]
inter: ["mash"]
diff : []
spec and db run deps don't match for: upcoming-events-0.0.1
spec : ["httparty", "mash"]
db : ["httparty", "mash", "mash"]
inter: ["mash"]
diff : []
spec and db run deps don't match for: imagetooth-0.0.4
spec : ["optionparser"]
db : ["optionparser", "rmagick"]
inter: []
diff : ["rmagick"]
spec and db run deps don't match for: data_mapper-0.9.4
spec : ["dm-aggregates", "dm-cli", "dm-core", "dm-core", "dm-is-tree", "dm-migrations", "dm-observer", "dm-serializer", "dm-timestamps", "dm-types", "dm-validations"]
db : ["dm-aggregates", "dm-cli", "dm-core", "dm-is-tree", "dm-migrations", "dm-observer", "dm-serializer", "dm-timestamps", "dm-types", "dm-validations"]
inter: []
diff : []
spec and db run deps don't match for: merb-1.0.11
spec : ["dm-aggregates", "dm-core", "dm-migrations", "dm-serializer", "dm-sweatshop", "dm-timestamps", "dm-types", "dm-validations", "do_sqlite3", "merb-core", "merb-more", "merb_datamapper"]
db : ["dm-aggregates", "dm-core", "dm-migrations", "dm-serializer", "dm-sweatshop", "dm-timestamps", "dm-types", "dm-validations", "do_sqlite3", "merb-core", "merb-more"]
inter: []
diff : []
spec and db run deps don't match for: datamapper-0.9.5
spec : ["dm-aggregates", "dm-cli", "dm-core", "dm-core", "dm-is-tree", "dm-migrations", "dm-observer", "dm-serializer", "dm-timestamps", "dm-types", "dm-validations"]
db : ["dm-aggregates", "dm-cli", "dm-core", "dm-is-tree", "dm-migrations", "dm-observer", "dm-serializer", "dm-timestamps", "dm-types", "dm-validations"]
inter: []
diff : []
spec and db run deps don't match for: merb-1.0.8
spec : ["dm-aggregates", "dm-core", "dm-migrations", "dm-sweatshop", "dm-timestamps", "dm-types", "dm-validations", "do_sqlite3", "merb-core", "merb-more", "merb_datamapper"]
db : ["dm-aggregates", "dm-core", "dm-migrations", "dm-sweatshop", "dm-timestamps", "dm-types", "dm-validations", "do_sqlite3", "merb-core", "merb-more"]
inter: []
diff : []
spec and db run deps don't match for: merb-words-0.3.3
spec : ["merb-slices", "merb-ui", "merb_datamapper"]
db : ["merb-slices", "merb-ui"]
inter: []
diff : []
spec and db run deps don't match for: merb-more-1.0.2
spec : ["merb-action-args", "merb-assets", "merb-auth", "merb-cache", "merb-core", "merb-exceptions", "merb-gen", "merb-haml", "merb-helpers", "merb-mailer", "merb-param-protection", "merb-slices", "merb_datamapper"]
db : ["merb-action-args", "merb-assets", "merb-auth", "merb-cache", "merb-core", "merb-exceptions", "merb-gen", "merb-haml", "merb-helpers", "merb-mailer", "merb-param-protection", "merb-slices"]
inter: []
diff : []
spec and db run deps don't match for: data_mapper-0.9.3
spec : ["dm-aggregates", "dm-cli", "dm-core", "dm-core", "dm-is-tree", "dm-migrations", "dm-observer", "dm-serializer", "dm-timestamps", "dm-types", "dm-validations"]
db : ["dm-aggregates", "dm-cli", "dm-core", "dm-is-tree", "dm-migrations", "dm-observer", "dm-serializer", "dm-timestamps", "dm-types", "dm-validations"]
inter: []
diff : []
spec and db run deps don't match for: datamapper-0.9.4
spec : ["dm-aggregates", "dm-cli", "dm-core", "dm-core", "dm-is-tree", "dm-migrations", "dm-observer", "dm-serializer", "dm-timestamps", "dm-types", "dm-validations"]
db : ["dm-aggregates", "dm-cli", "dm-core", "dm-is-tree", "dm-migrations", "dm-observer", "dm-serializer", "dm-timestamps", "dm-types", "dm-validations"]
inter: []
diff : []
spec and db run deps don't match for: davclient-0.0.3
spec : ["hpricot"]
db : ["hpricot", "zentest"]
inter: []
diff : ["zentest"]
spec and db run deps don't match for: merb-1.0.8.1
spec : ["dm-aggregates", "dm-core", "dm-migrations", "dm-serializer", "dm-sweatshop", "dm-timestamps", "dm-types", "dm-validations", "do_sqlite3", "merb-core", "merb-more", "merb_datamapper"]
db : ["dm-aggregates", "dm-core", "dm-migrations", "dm-serializer", "dm-sweatshop", "dm-timestamps", "dm-types", "dm-validations", "do_sqlite3", "merb-core", "merb-more"]
inter: []
diff : []
spec and db run deps don't match for: acts_as_markup-0.1.0
spec : ["activerecord", "activesupport", "rdiscount"]
db : ["activerecord", "activesupport", "rdiscount", "redcloth"]
inter: []
diff : ["redcloth"]
spec and db run deps don't match for: sqliki_generator-0.0.2
spec : ["rails"]
db : ["rails", "redcloth"]
inter: []
diff : ["redcloth"]
spec and db run deps don't match for: merb-words-0.3.2
spec : ["merb-slices", "merb-ui", "merb_datamapper"]
db : ["merb-slices", "merb-ui"]
inter: []
diff : []
spec and db run deps don't match for: merb-1.0.10
spec : ["dm-aggregates", "dm-core", "dm-migrations", "dm-serializer", "dm-sweatshop", "dm-timestamps", "dm-types", "dm-validations", "do_sqlite3", "merb-core", "merb-more", "merb_datamapper"]
db : ["dm-aggregates", "dm-core", "dm-migrations", "dm-serializer", "dm-sweatshop", "dm-timestamps", "dm-types", "dm-validations", "do_sqlite3", "merb-core", "merb-more"]
inter: []
diff : []
spec and db run deps don't match for: webgen-0.4.3
spec : ["cmdparse"]
db : ["cmdparse", "redcloth"]
inter: []
diff : ["redcloth"]
spec and db run deps don't match for: daylite-models-0.1.1
spec : ["activerecord", "activerecord", "activesupport"]
db : ["activerecord", "activesupport"]
inter: []
diff : []
spec and db run deps don't match for: daylite-models-0.1.0
spec : ["activerecord", "activerecord", "activesupport"]
db : ["activerecord", "activesupport"]
inter: []
diff : []
spec and db run deps don't match for: datamapper-0.9.3
spec : ["dm-aggregates", "dm-cli", "dm-core", "dm-core", "dm-is-tree", "dm-migrations", "dm-observer", "dm-serializer", "dm-timestamps", "dm-types", "dm-validations"]
db : ["dm-aggregates", "dm-cli", "dm-core", "dm-is-tree", "dm-migrations", "dm-observer", "dm-serializer", "dm-timestamps", "dm-types", "dm-validations"]
inter: []
diff : []
spec and db run deps don't match for: merb-words-0.3.1
spec : ["merb-slices", "merb-ui", "merb_datamapper"]
db : ["merb-slices", "merb-ui"]
inter: []
diff : []
spec and db run deps don't match for: memcache-client-1.6.3
spec : []
db : ["rubyinline"]
inter: []
diff : ["rubyinline"]
spec and db run deps don't match for: data_mapper-0.9.11
spec : ["dm-aggregates", "dm-cli", "dm-core", "dm-core", "dm-is-tree", "dm-migrations", "dm-observer", "dm-serializer", "dm-timestamps", "dm-types", "dm-validations"]
db : ["dm-aggregates", "dm-cli", "dm-core", "dm-is-tree", "dm-migrations", "dm-observer", "dm-serializer", "dm-timestamps", "dm-types", "dm-validations"]
inter: []
diff : []
spec and db run deps don't match for: appengine-tools-0.0.1
spec : ["appengine-rack", "appengine-sdk", "jruby-abridged"]
db : ["appengine-rack", "jruby-abridged"]
inter: []
diff : []
spec and db run deps don't match for: datamapper-0.9.11
spec : ["dm-aggregates", "dm-cli", "dm-core", "dm-core", "dm-is-tree", "dm-migrations", "dm-observer", "dm-serializer", "dm-timestamps", "dm-types", "dm-validations"]
db : ["dm-aggregates", "dm-cli", "dm-core", "dm-is-tree", "dm-migrations", "dm-observer", "dm-serializer", "dm-timestamps", "dm-types", "dm-validations"]
inter: []
diff : []
spec and db run deps don't match for: faded-1.0.0
spec : ["hoe"]
db : ["chronic", "hoe"]
inter: []
diff : ["chronic"]
spec and db run deps don't match for: waves-0.7.1
spec : ["autocode", "choice", "daemons", "erubis", "extensions", "live_console", "markaby", "mongrel", "rack", "sequel"]
db : ["autocode", "choice", "daemons", "erubis", "extensions", "live_console", "markaby", "mongrel", "rack", "redcloth", "sequel"]
inter: []
diff : ["redcloth"]
spec and db run deps don't match for: prawn-format-0.1.0
spec : ["prawn", "prawn"]
db : ["prawn"]
inter: []
diff : []
spec and db run deps don't match for: merb-1.0.7.1
spec : ["dm-aggregates", "dm-core", "dm-migrations", "dm-sweatshop", "dm-timestamps", "dm-types", "dm-validations", "do_sqlite3", "merb-core", "merb-more", "merb_datamapper"]
db : ["dm-aggregates", "dm-core", "dm-migrations", "dm-sweatshop", "dm-timestamps", "dm-types", "dm-validations", "do_sqlite3", "merb-core", "merb-more"]
inter: []
diff : []
spec and db run deps don't match for: merb-words-0.2.1
spec : ["merb-ui", "merb_datamapper"]
db : ["merb-ui"]
inter: []
diff : []
spec and db run deps don't match for: merb-more-0.9.12
spec : ["merb-action-args", "merb-assets", "merb-auth", "merb-cache", "merb-core", "merb-exceptions", "merb-gen", "merb-haml", "merb-helpers", "merb-mailer", "merb-param-protection", "merb-slices", "merb_datamapper"]
db : ["merb-action-args", "merb-assets", "merb-auth", "merb-cache", "merb-core", "merb-exceptions", "merb-gen", "merb-haml", "merb-helpers", "merb-mailer", "merb-param-protection", "merb-slices"]
inter: []
diff : []
spec and db run deps don't match for: merb-more-1.0.1
spec : ["merb-action-args", "merb-assets", "merb-auth", "merb-cache", "merb-core", "merb-exceptions", "merb-gen", "merb-haml", "merb-helpers", "merb-mailer", "merb-param-protection", "merb-slices", "merb_datamapper"]
db : ["merb-action-args", "merb-assets", "merb-auth", "merb-cache", "merb-core", "merb-exceptions", "merb-gen", "merb-haml", "merb-helpers", "merb-mailer", "merb-param-protection", "merb-slices"]
inter: []
diff : []
spec and db run deps don't match for: germinate-gist-1.0.0
spec : ["nokogiri", "rest_client", "schacon-git"]
db : ["nokogiri", "schacon-git"]
inter: []
diff : []
spec and db dev deps don't match for: evri-0.06
spec : ["hoe", "mocha"]
db : ["hoe"]
inter: []
diff : []
spec and db run deps don't match for: merb_seed-0.1.1
spec : ["merb_datamapper"]
db : []
inter: []
diff : []
spec and db dev deps don't match for: rumai-3.0.0
spec : ["dfect", "inochi"]
db : ["inochi"]
inter: ["inochi"]
diff : []
spec and db run deps don't match for: merb-1.0.6.1
spec : ["dm-aggregates", "dm-core", "dm-migrations", "dm-sweatshop", "dm-timestamps", "dm-types", "dm-validations", "do_sqlite3", "merb-core", "merb-more", "merb_datamapper"]
db : ["dm-aggregates", "dm-core", "dm-migrations", "dm-sweatshop", "dm-timestamps", "dm-types", "dm-validations", "do_sqlite3", "merb-core", "merb-more"]
inter: []
diff : []
spec and db run deps don't match for: data_mapper-0.9.9
spec : ["dm-aggregates", "dm-cli", "dm-core", "dm-core", "dm-is-tree", "dm-migrations", "dm-observer", "dm-serializer", "dm-timestamps", "dm-types", "dm-validations"]
db : ["dm-aggregates", "dm-cli", "dm-core", "dm-is-tree", "dm-migrations", "dm-observer", "dm-serializer", "dm-timestamps", "dm-types", "dm-validations"]
inter: []
diff : []
spec and db run deps don't match for: google-appengine-0.0.2
spec : ["appengine-jruby-jars", "appengine-rack", "appengine-sdk", "appengine-tools"]
db : ["appengine-jruby-jars", "appengine-rack", "appengine-tools"]
inter: []
diff : []
spec and db run deps don't match for: merb-words-0.1.3
spec : ["merb-ui", "merb_datamapper"]
db : ["merb-ui"]
inter: []
diff : []
spec and db run deps don't match for: merb-words-0.4
spec : ["merb-slices", "merb-ui", "merb_datamapper"]
db : ["merb-slices", "merb-ui"]
inter: []
diff : []
spec and db run deps don't match for: merb-more-0.9.10
spec : ["merb-action-args", "merb-assets", "merb-auth", "merb-cache", "merb-core", "merb-exceptions", "merb-gen", "merb-haml", "merb-helpers", "merb-mailer", "merb-param-protection", "merb-slices", "merb_datamapper"]
db : ["merb-action-args", "merb-assets", "merb-auth", "merb-cache", "merb-core", "merb-exceptions", "merb-gen", "merb-haml", "merb-helpers", "merb-mailer", "merb-param-protection", "merb-slices"]
inter: []
diff : []
spec and db dev deps don't match for: rumai-3.1.0
spec : ["dfect", "inochi"]
db : ["inochi"]
inter: ["inochi"]
diff : []
spec and db dev deps don't match for: evri-0.07
spec : ["hoe", "mocha"]
db : ["hoe"]
inter: []
diff : []
spec and db dev deps don't match for: evri-0.04
spec : ["hoe", "mocha"]
db : ["hoe"]
inter: []
diff : []
spec and db run deps don't match for: merbiful-release-0.2.4
spec : ["dm-aggregates", "dm-core", "dm-migrations", "dm-timestamps", "dm-validations", "merb-action-args", "merb-assets", "merb-core", "merb-haml", "merb_datamapper", "merb_helpers"]
db : ["dm-aggregates", "dm-core", "dm-migrations", "dm-timestamps", "dm-validations", "merb-action-args", "merb-assets", "merb-core", "merb-haml", "merb_helpers"]
inter: []
diff : []
spec and db run deps don't match for: cliblog-0.1.5
spec : []
db : ["highline"]
inter: []
diff : ["highline"]
spec and db run deps don't match for: merb-1.0.4
spec : ["dm-aggregates", "dm-core", "dm-migrations", "dm-sweatshop", "dm-timestamps", "dm-types", "dm-validations", "do_sqlite3", "merb-core", "merb-more", "merb_datamapper"]
db : ["dm-aggregates", "dm-core", "dm-migrations", "dm-sweatshop", "dm-timestamps", "dm-types", "dm-validations", "do_sqlite3", "merb-core", "merb-more"]
inter: []
diff : []
spec and db run deps don't match for: datamapper-0.9.9
spec : ["dm-aggregates", "dm-cli", "dm-core", "dm-core", "dm-is-tree", "dm-migrations", "dm-observer", "dm-serializer", "dm-timestamps", "dm-types", "dm-validations"]
db : ["dm-aggregates", "dm-cli", "dm-core", "dm-is-tree", "dm-migrations", "dm-observer", "dm-serializer", "dm-timestamps", "dm-types", "dm-validations"]
inter: []
diff : []
spec and db run deps don't match for: merb-words-0.4.2
spec : ["merb-slices", "merb-ui", "merb_datamapper"]
db : ["merb-slices", "merb-ui"]
inter: []
diff : []
spec and db run deps don't match for: data_mapper-0.9.7
spec : ["dm-aggregates", "dm-cli", "dm-core", "dm-core", "dm-is-tree", "dm-migrations", "dm-observer", "dm-serializer", "dm-timestamps", "dm-types", "dm-validations"]
db : ["dm-aggregates", "dm-cli", "dm-core", "dm-is-tree", "dm-migrations", "dm-observer", "dm-serializer", "dm-timestamps", "dm-types", "dm-validations"]
inter: []
diff : []
spec and db run deps don't match for: RubyInline-3.8.3
spec : ["zentest"]
db : []
inter: []
diff : []
spec and db dev deps don't match for: evri-0.03
spec : ["hoe", "mocha"]
db : ["hoe"]
inter: []
diff : []
spec and db run deps don't match for: appengine-tools-0.0.3
spec : ["appengine-jruby-jars", "appengine-rack", "appengine-sdk"]
db : ["appengine-jruby-jars", "appengine-rack"]
inter: []
diff : []
spec and db run deps don't match for: datamapper-0.9.8
spec : ["dm-aggregates", "dm-cli", "dm-core", "dm-core", "dm-is-tree", "dm-migrations", "dm-observer", "dm-serializer", "dm-timestamps", "dm-types", "dm-validations"]
db : ["dm-aggregates", "dm-cli", "dm-core", "dm-is-tree", "dm-migrations", "dm-observer", "dm-serializer", "dm-timestamps", "dm-types", "dm-validations"]
inter: []
diff : []
spec and db run deps don't match for: merbiful-release-0.2.3
spec : ["dm-aggregates", "dm-core", "dm-migrations", "dm-timestamps", "dm-validations", "merb-action-args", "merb-assets", "merb-core", "merb-haml", "merb_datamapper", "merb_helpers"]
db : ["dm-aggregates", "dm-core", "dm-migrations", "dm-timestamps", "dm-validations", "merb-action-args", "merb-assets", "merb-core", "merb-haml", "merb_helpers"]
inter: []
diff : []
spec and db run deps don't match for: merb-words-0.4.1
spec : ["merb-slices", "merb-ui", "merb_datamapper"]
db : ["merb-slices", "merb-ui"]
inter: []
diff : []
spec and db run deps don't match for: data_mapper-0.9.6
spec : ["dm-aggregates", "dm-cli", "dm-core", "dm-core", "dm-is-tree", "dm-migrations", "dm-observer", "dm-serializer", "dm-timestamps", "dm-types", "dm-validations"]
db : ["dm-aggregates", "dm-cli", "dm-core", "dm-is-tree", "dm-migrations", "dm-observer", "dm-serializer", "dm-timestamps", "dm-types", "dm-validations"]
inter: []
diff : []
spec and db run deps don't match for: float-formats-0.2.0
spec : ["flt", "flt", "nio", "nio"]
db : ["flt", "nio"]
inter: []
diff : []
spec and db run deps don't match for: google-appengine-0.0.1
spec : ["appengine-rack", "appengine-sdk", "appengine-tools", "jruby-abridged"]
db : ["appengine-rack", "appengine-tools", "jruby-abridged"]
inter: []
diff : []
spec and db run deps don't match for: appengine-tools-0.0.2
spec : ["appengine-jruby-jars", "appengine-rack", "appengine-sdk"]
db : ["appengine-jruby-jars", "appengine-rack"]
inter: []
diff : []
spec and db run deps don't match for: merb-1.0.9
spec : ["dm-aggregates", "dm-core", "dm-migrations", "dm-serializer", "dm-sweatshop", "dm-timestamps", "dm-types", "dm-validations", "do_sqlite3", "merb-core", "merb-more", "merb_datamapper"]
db : ["dm-aggregates", "dm-core", "dm-migrations", "dm-serializer", "dm-sweatshop", "dm-timestamps", "dm-types", "dm-validations", "do_sqlite3", "merb-core", "merb-more"]
inter: []
diff : []
spec and db run deps don't match for: data_mapper-0.9.5
spec : ["dm-aggregates", "dm-cli", "dm-core", "dm-core", "dm-is-tree", "dm-migrations", "dm-observer", "dm-serializer", "dm-timestamps", "dm-types", "dm-validations"]
db : ["dm-aggregates", "dm-cli", "dm-core", "dm-is-tree", "dm-migrations", "dm-observer", "dm-serializer", "dm-timestamps", "dm-types", "dm-validations"]
inter: []
diff : []
spec and db run deps don't match for: datamapper-0.9.7
spec : ["dm-aggregates", "dm-cli", "dm-core", "dm-core", "dm-is-tree", "dm-migrations", "dm-observer", "dm-serializer", "dm-timestamps", "dm-types", "dm-validations"]
db : ["dm-aggregates", "dm-cli", "dm-core", "dm-is-tree", "dm-migrations", "dm-observer", "dm-serializer", "dm-timestamps", "dm-types", "dm-validations"]
inter: []
diff : []
spec and db run deps don't match for: acts_as_markup-1.3.1
spec : ["activerecord", "activerecord", "activesupport", "redcloth", "wikitext"]
db : ["activerecord", "activesupport", "redcloth", "wikitext"]
inter: []
diff : []
spec and db run deps don't match for: merbiful-release-0.2.2
spec : ["dm-aggregates", "dm-core", "dm-migrations", "dm-timestamps", "dm-validations", "merb-action-args", "merb-assets", "merb-core", "merb-haml", "merb_datamapper", "merb_helpers"]
db : ["dm-aggregates", "dm-core", "dm-migrations", "dm-timestamps", "dm-validations", "merb-action-args", "merb-assets", "merb-core", "merb-haml", "merb_helpers"]
inter: []
diff : []
spec and db run deps don't match for: merb-words-0.3
spec : ["merb-slices", "merb-ui", "merb_datamapper"]
db : ["merb-slices", "merb-ui"]
inter: []
diff : []
spec and db run deps don't match for: merb-more-1.0
spec : ["merb-action-args", "merb-assets", "merb-auth", "merb-cache", "merb-core", "merb-exceptions", "merb-gen", "merb-haml", "merb-helpers", "merb-mailer", "merb-param-protection", "merb-slices", "merb_datamapper"]
db : ["merb-action-args", "merb-assets", "merb-auth", "merb-cache", "merb-core", "merb-exceptions", "merb-gen", "merb-haml", "merb-helpers", "merb-mailer", "merb-param-protection", "merb-slices"]
inter: []
diff : []
spec and db run deps don't match for: merb-more-1.0.3
spec : ["merb-action-args", "merb-assets", "merb-auth", "merb-cache", "merb-core", "merb-exceptions", "merb-gen", "merb-haml", "merb-helpers", "merb-mailer", "merb-param-protection", "merb-slices", "merb_datamapper"]
db : ["merb-action-args", "merb-assets", "merb-auth", "merb-cache", "merb-core", "merb-exceptions", "merb-gen", "merb-haml", "merb-helpers", "merb-mailer", "merb-param-protection", "merb-slices"]
inter: []
diff : []
spec and db dev deps don't match for: rubyhelpers-0.1.1
spec : []
db : ["redcloth"]
inter: []
diff : ["redcloth"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment