From d9d19b76f3c9e7678aec21b859f6532da8e15568 Mon Sep 17 00:00:00 2001 From: Jeffrey Phillips Freeman <jeffrey.freeman@syncleus.com> Date: Fri, 30 Sep 2016 10:20:44 -0400 Subject: [PATCH] Added description and fixed a bug int he dependency. --- Rakefile | 7 ++++++- apex.gemspec | 10 +++++----- 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/Rakefile b/Rakefile index dce5efb..12bacaf 100644 --- a/Rakefile +++ b/Rakefile @@ -23,11 +23,16 @@ def dump_load_path puts "Found in #{path}" end end +gem 'json', '~> 1.8.3' + +gem 'bundler', '~> 1.13' require 'bundler' -require 'rake/clean' +gem 'rake', '~> 11.3.0' +require 'rake/clean' require 'rake/testtask' + require 'cucumber' require 'cucumber/rake/task' gem 'rdoc' # we need the installed RDoc gem, not the system one diff --git a/apex.gemspec b/apex.gemspec index b033db8..20b6a76 100644 --- a/apex.gemspec +++ b/apex.gemspec @@ -9,9 +9,9 @@ Gem::Specification.new do |spec| spec.authors = ["Jeffrey Phillips Freeman"] spec.email = ["jeffrey.freeman@syncleus.com"] - spec.summary = %q{TODO: Write a short summary, because Rubygems requires one.} - spec.description = %q{TODO: Write a longer description or delete this line.} - spec.homepage = "TODO: Put your gem's website or public repo URL here." + spec.summary = %q{Reference implementation for the APEX Radio protocol.} + spec.description = %q{Reference implementation for the APEX Radio protocol.} + spec.homepage = "http://apexprotocol.com" # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host' # to allow pushing to a single host or delete this section to allow pushing to any host. @@ -29,10 +29,10 @@ Gem::Specification.new do |spec| spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] + spec.add_development_dependency "json", "~> 1.8.3" spec.add_development_dependency "bundler", "~> 1.13" - spec.add_development_dependency "rake", "~> 10.0" + spec.add_development_dependency "rake", "~> 11.3.0" spec.add_development_dependency('rdoc') spec.add_development_dependency('aruba') - spec.add_development_dependency('rake') spec.add_dependency('methadone', '~> 1.8.0') end -- GitLab