Skip to content

Commit

Permalink
fix Rakefile
Browse files Browse the repository at this point in the history
  • Loading branch information
youpy committed Feb 15, 2010
1 parent af3d164 commit 4d9490d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ begin
gem.email = "youpy@buycheapviagraonlinenow.com"
gem.homepage = "http://github.com/youpy/spotlight"
gem.authors = ["youpy"]
gem.files = FileList['lib/**/*.rb', '**/*.c'].to_a
gem.files = FileList['lib/**/*.rb', '**/*.c', '**/*.h'].to_a
gem.add_development_dependency "rspec", ">= 1.2.9"
gem.add_development_dependency "rake-compiler"
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
Expand Down
1 change: 1 addition & 0 deletions ext/md_item_native/extconf.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@

$LDFLAGS += ' -framework CoreFoundation -framework CoreServices'

have_header("md_item_native")
create_makefile("md_item_native")
9 changes: 6 additions & 3 deletions spotlight.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,15 @@ Gem::Specification.new do |s|
s.date = %q{2010-02-15}
s.description = %q{Library to use Spotlight from Ruby}
s.email = %q{youpy@buycheapviagraonlinenow.com}
s.extensions = ["ext/md_query_native/extconf.rb"]
s.extensions = ["ext/md_item_native/extconf.rb", "ext/md_query_native/extconf.rb"]
s.extra_rdoc_files = [
"LICENSE",
"README.rdoc"
]
s.files = [
"ext/md_query_native/md_query_native.c",
"ext/md_item_native/md_item_native.c",
"ext/md_item_native/md_item_native.h",
"ext/md_query_native/md_query_native.c",
"lib/spotlight.rb",
"lib/spotlight/query.rb"
]
Expand All @@ -28,7 +30,8 @@ Gem::Specification.new do |s|
s.rubygems_version = %q{1.3.5}
s.summary = %q{Spotlight for Ruby}
s.test_files = [
"spec/md_query_native_spec.rb",
"spec/md_item_native_spec.rb",
"spec/md_query_native_spec.rb",
"spec/spec_helper.rb",
"spec/spotlight_query_spec.rb"
]
Expand Down

0 comments on commit 4d9490d

Please sign in to comment.