Skip to content

Commit

Permalink
Merge branch 'CHEF-1064' of git://github.com/danielsdeleo/chef into d…
Browse files Browse the repository at this point in the history
…anielsdeleo/CHEF-1064
  • Loading branch information
adamhjk committed Mar 30, 2010
2 parents 96c9a7a + 74cc12f commit 4e3af93
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 16 deletions.
12 changes: 6 additions & 6 deletions chef-server-api/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ spec = Gem::Specification.new do |s|
s.author = AUTHOR
s.email = EMAIL
s.homepage = HOMEPAGE

["merb-slices",
"merb-core",
"merb-assets",
"merb-helpers",
"thin",
s.add_dependency "merb-core", "~> 1.0"
s.add_dependency "merb-slices", "~> 1.0"
s.add_dependency "merb-assets", "~> 1.0"
s.add_dependency "merb-helpers", "~> 1.0"
["thin",
"json",
"uuidtools"
].each { |g| s.add_dependency g}
Expand Down
15 changes: 8 additions & 7 deletions chef-server-webui/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,14 @@ spec = Gem::Specification.new do |s|
s.email = EMAIL
s.homepage = HOMEPAGE

["merb-slices",
"merb-core",
"merb-haml",
"merb-assets",
"merb-helpers",
"merb-param-protection",
"thin",
s.add_dependency "merb-core", "~> 1.0"
s.add_dependency "merb-slices", "~> 1.0"
s.add_dependency "merb-assets", "~> 1.0"
s.add_dependency "merb-helpers", "~> 1.0"
s.add_dependency "merb-haml", "~> 1.0"
s.add_dependency "merb-param-protection", "~> 1.0"

["thin",
"haml",
"json",
"ruby-openid",
Expand Down
8 changes: 5 additions & 3 deletions chef-server/lib/tasks/package.rake
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,11 @@ spec = Gem::Specification.new do |s|
s.author = AUTHOR
s.email = EMAIL
s.homepage = HOMEPAGE

%w{ merb-core merb-haml merb-assets
merb-helpers thin haml
s.add_dependency "merb-core", "~> 1.0"
s.add_dependency "merb-haml", "~> 1.0"
s.add_dependency "merb-assets", "~> 1.0"
s.add_dependency "merb-helpers", "~> 1.0"
%w{ thin haml
ruby-openid json coderay}.each { |gem| s.add_dependency gem }

s.bindir = "bin"
Expand Down

0 comments on commit 4e3af93

Please sign in to comment.