Skip to content

Fix Gemfile/Gemspec #31

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
3 commits merged into from
Jan 9, 2012
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 11 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
source "http://rubygems.org"

gem 'rake'
gem 'jeweler'
gem 'rspec', :require => 'spec'
gem 'ruby-debug19'
group :development do
gem 'rake'
gem 'jeweler'
gem 'rspec', :require => 'spec'
gem 'rcov'
if RUBY_VERSION < "1.9"
gem 'ruby-debug'
else
gem 'ruby-debug19'
end
end
25 changes: 11 additions & 14 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
GEM
remote: http://rubygems.org/
specs:
archive-tar-minitar (0.5.2)
columnize (0.3.6)
diff-lcs (1.1.3)
git (1.2.5)
jeweler (1.6.4)
bundler (~> 1.0)
git (>= 1.2.5)
rake
linecache19 (0.5.12)
ruby_core_source (>= 0.1.4)
linecache (0.46)
rbx-require-relative (> 0.0.4)
rake (0.9.2.2)
rbx-require-relative (0.0.5)
rcov (0.9.11)
rspec (2.8.0)
rspec-core (~> 2.8.0)
rspec-expectations (~> 2.8.0)
Expand All @@ -20,22 +21,18 @@ GEM
rspec-expectations (2.8.0)
diff-lcs (~> 1.1.2)
rspec-mocks (2.8.0)
ruby-debug-base19 (0.11.25)
columnize (>= 0.3.1)
linecache19 (>= 0.5.11)
ruby_core_source (>= 0.1.4)
ruby-debug19 (0.11.6)
columnize (>= 0.3.1)
linecache19 (>= 0.5.11)
ruby-debug-base19 (>= 0.11.19)
ruby_core_source (0.1.5)
archive-tar-minitar (>= 0.5.2)
ruby-debug (0.10.4)
columnize (>= 0.1)
ruby-debug-base (~> 0.10.4.0)
ruby-debug-base (0.10.4)
linecache (>= 0.3)

PLATFORMS
ruby

DEPENDENCIES
jeweler
rake
rcov
rspec
ruby-debug19
ruby-debug
12 changes: 3 additions & 9 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,12 @@ rescue LoadError
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
end

require 'spec/rake/spectask'
Spec::Rake::SpecTask.new(:spec) do |spec|
spec.libs << 'lib' << 'spec'
spec.spec_files = FileList['spec/**/*_spec.rb']
end
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec)

Spec::Rake::SpecTask.new(:rcov) do |spec|
spec.libs << 'lib' << 'spec'
RSpec::Core::RakeTask.new(:rcov) do |spec|
spec.pattern = 'spec/**/*_spec.rb'
spec.rcov = true
end

#task :spec => :check_dependencies

task :default => :spec