Skip to content

Commit

Permalink
Update LICENSE (still MIT) and gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
wspurgin committed Jul 23, 2023
1 parent 4afc00e commit 4307a7d
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 30 deletions.
12 changes: 12 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
The MIT License (MIT)

Copyright (c) 2023 Will Spurgin

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Elements of this software and associated documentation files are covered by the following license:

The MIT License (MIT)

Copyright (c) 2014, 2015 Phil Ostler

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
Expand Down
58 changes: 28 additions & 30 deletions rspec-sidekiq.gemspec
Original file line number Diff line number Diff line change
@@ -1,40 +1,38 @@
require File.expand_path('../lib/rspec/sidekiq/version', __FILE__)
require File.expand_path("../lib/rspec/sidekiq/version", __FILE__)

Gem::Specification.new do |s|
s.name = 'rspec-sidekiq'
s.name = "rspec-sidekiq"
s.version = RSpec::Sidekiq::VERSION
s.platform = Gem::Platform::RUBY
s.author = 'Phil Ostler'
s.email = '[email protected]'
s.homepage = 'http://github.com/philostler/rspec-sidekiq'
s.summary = 'RSpec for Sidekiq'
s.description = 'Simple testing of Sidekiq jobs via a collection of matchers and helpers'
s.license = 'MIT'
s.authors = ["Aidan Coyle", "Phil Ostler", "Will Spurgin"]
s.homepage = "http://github.com/wspurgin/rspec-sidekiq"
s.summary = "RSpec for Sidekiq"
s.description = "Simple testing of Sidekiq jobs via a collection of matchers and helpers"
s.license = "MIT"

s.add_dependency "rspec-core", "~> 3.0", ">= 3.0.0"
s.add_dependency "sidekiq", ">= 5", "< 8"

s.add_development_dependency 'pry'
s.add_development_dependency 'pry-doc'
s.add_development_dependency 'pry-nav'
s.add_development_dependency 'rspec'
s.add_development_dependency 'coveralls'
s.add_development_dependency 'fuubar'
s.add_development_dependency 'activejob'
s.add_development_dependency 'actionmailer'
s.add_development_dependency 'activerecord'
s.add_development_dependency 'activemodel'
s.add_development_dependency 'activesupport'
s.add_development_dependency "pry"
s.add_development_dependency "pry-doc"
s.add_development_dependency "pry-nav"
s.add_development_dependency "rspec"
s.add_development_dependency "coveralls"
s.add_development_dependency "fuubar"
s.add_development_dependency "activejob"
s.add_development_dependency "actionmailer"
s.add_development_dependency "activerecord"
s.add_development_dependency "activemodel"
s.add_development_dependency "activesupport"


s.files = Dir['.gitattributes'] +
Dir['.gitignore'] +
Dir['.rspec'] +
Dir['CHANGES.md'] +
Dir['Gemfile'] +
Dir['LICENSE'] +
Dir['README.md'] +
Dir['rspec-sidekiq.gemspec'] +
Dir['**/*.rb']
s.require_paths = ['lib']
s.files = Dir[".gitattributes"] +
Dir[".gitignore"] +
Dir[".rspec"] +
Dir["CHANGES.md"] +
Dir["Gemfile"] +
Dir["LICENSE"] +
Dir["README.md"] +
Dir["rspec-sidekiq.gemspec"] +
Dir["**/*.rb"]
s.require_paths = ["lib"]
end

0 comments on commit 4307a7d

Please sign in to comment.