Skip to content

Commit

Permalink
spdx license compat
Browse files Browse the repository at this point in the history
  • Loading branch information
ahoward committed Mar 3, 2014
1 parent 87069e3 commit 880305c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Rakefile
Expand Up @@ -4,7 +4,7 @@ This.email = "ara.t.howard@gmail.com"
This.homepage = "https://github.com/ahoward/#{ This.lib }"

task :license do
open('LICENSE', 'w'){|fd| fd.puts "same as ruby's"}
open('LICENSE', 'w'){|fd| fd.puts "Ruby"}
end

task :default do
Expand Down Expand Up @@ -93,7 +93,7 @@ task :gemspec do
test_files = "test/#{ lib }.rb" if File.file?("test/#{ lib }.rb")
summary = object.respond_to?(:summary) ? object.summary : "summary: #{ lib } kicks the ass"
description = object.respond_to?(:description) ? object.description : "description: #{ lib } kicks the ass"
license = object.respond_to?(:license) ? object.license : "same as ruby's"
license = object.respond_to?(:license) ? object.license : "Ruby"

if This.extensions.nil?
This.extensions = []
Expand Down
2 changes: 1 addition & 1 deletion lib/macaddr.rb
Expand Up @@ -23,7 +23,7 @@
require 'systemu'

module Mac
VERSION = '1.6.5'
VERSION = '1.6.6'

def Mac.version
::Mac::VERSION
Expand Down
4 changes: 2 additions & 2 deletions macaddr.gemspec
Expand Up @@ -3,11 +3,11 @@

Gem::Specification::new do |spec|
spec.name = "macaddr"
spec.version = "1.6.5"
spec.version = "1.6.6"
spec.platform = Gem::Platform::RUBY
spec.summary = "macaddr"
spec.description = "cross platform mac address determination for ruby"
spec.license = "same as ruby's"
spec.license = "Ruby"

spec.files =
["Gemfile",
Expand Down
Binary file removed pkg/macaddr-1.6.5.gem
Binary file not shown.

1 comment on commit 880305c

@prescod
Copy link

@prescod prescod commented on 880305c Mar 3, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great. Thank you.

Please sign in to comment.