Skip to content

Commit

Permalink
* Added gemspec.
Browse files Browse the repository at this point in the history
  • Loading branch information
ledestin committed Jan 28, 2014
1 parent f053727 commit 31dc53b
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
source 'http://rubygems.org'

gemspec

gem 'rake'
gem 'rspec'
gem 'coveralls', :require => false
gem 'hitimes', '~> 1.2'
3 changes: 3 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
require 'bundler'
Bundler::GemHelper.install_tasks

require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new
task :default => :spec
Expand Down
16 changes: 16 additions & 0 deletions sorted_array_binary.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
Gem::Specification.new do |s|
s.name = 'sorted_array_binary'
s.version = '0.0.1'
s.date = '2014-01-29'
s.summary = 'Sorted array'
s.description = 'Sorted array using binary search'
s.authors = ['Dmitry Maksyoma']
s.email = 'ledestin@gmail.com'
s.files = `git ls-files`.split($\)
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = ['lib']
s.homepage = 'https://github.com/ledestin/sorted_array_binary'

s.add_development_dependency 'rspec', '>= 2.13'
s.add_development_dependency 'hitimes', '~> 1.2'
end

0 comments on commit 31dc53b

Please sign in to comment.