forked from intothefire/ruby-postcodeanywhere
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updating all gems and removing unneeded dependencies.
- Loading branch information
Showing
6 changed files
with
58 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
2.5.9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,35 +11,10 @@ rescue Bundler::BundlerError => e | |
end | ||
require 'rake' | ||
|
||
require 'jeweler' | ||
|
||
Jeweler::Tasks.new do |gem| | ||
# gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options | ||
gem.name = 'ruby-postcodeanywhere' | ||
gem.homepage = 'http://github.com/intothefire/ruby-postcodeanywhere' | ||
gem.license = 'MIT' | ||
gem.summary = %(Gem to provide basic access to PostcodeAnywhere services) | ||
gem.description = %(Gem to provide basic access to PostcodeAnywhere services) | ||
gem.email = '[email protected]' | ||
gem.authors = ['Chris Norman'] | ||
# dependencies defined in Gemfile | ||
end | ||
Jeweler::RubygemsDotOrgTasks.new | ||
|
||
require 'rspec/core' | ||
require 'rspec/core/rake_task' | ||
RSpec::Core::RakeTask.new(:spec) do |spec| | ||
spec.pattern = FileList['spec/**/*_spec.rb'] | ||
end | ||
|
||
task default: :spec | ||
|
||
require 'rake/rdoctask' | ||
Rake::RDocTask.new do |rdoc| | ||
version = File.exist?('VERSION') ? File.read('VERSION') : '' | ||
|
||
rdoc.rdoc_dir = 'rdoc' | ||
rdoc.title = "ruby-postcodeanywhere #{version}" | ||
rdoc.rdoc_files.include('README*') | ||
rdoc.rdoc_files.include('lib/**/*.rb') | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.1.3 | ||
0.2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,58 +3,48 @@ | |
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec' | ||
# frozen_string_literal: true | ||
|
||
# stub: ruby-postcodeanywhere 0.2.0 ruby lib | ||
|
||
Gem::Specification.new do |s| | ||
s.name = 'ruby-postcodeanywhere' | ||
s.version = '0.1.3' | ||
s.version = '0.2.0' | ||
|
||
s.required_ruby_version = '>= 2.5.0' | ||
|
||
s.authors = ['Funding Circle'] | ||
s.email = ['[email protected]'] | ||
s.summary = 'Gem to provide basic access to PostcodeAnywhere services' | ||
s.description = 'Gem to provide basic access to PostcodeAnywhere services' | ||
s.homepage = 'http://github.com/FundingCircle/ruby-postcodeanywhere' | ||
s.licenses = ['MIT'] | ||
|
||
s.required_rubygems_version = Gem::Requirement.new('>= 0') if s.respond_to? :required_rubygems_version= | ||
s.authors = ['Chris Norman'] | ||
s.description = 'Gem to provide basic access to PostcodeAnywhere services' | ||
s.email = '[email protected]' | ||
s.require_paths = ['lib'] | ||
s.extra_rdoc_files = [ | ||
'LICENSE.txt', | ||
'README.rdoc' | ||
] | ||
s.files = [ | ||
'.document', | ||
'.github/workflows/ci.yml', | ||
'.rspec', | ||
'.rubocop.yml', | ||
'.rubocop_todo.yml', | ||
'.ruby-version', | ||
'Gemfile', | ||
'Gemfile.lock', | ||
'LICENSE.txt', | ||
'Postcode Anywhere.tmproj', | ||
'README.rdoc', | ||
'Rakefile', | ||
'VERSION', | ||
'lib/postcode_anywhere/bank_account_validation.rb', | ||
'lib/ruby-postcodeanywhere.rb', | ||
'ruby-postcodeanywhere.gemspec', | ||
'spec/ruby-postcodeanywhere_spec.rb', | ||
'spec/lib/postcode_anywhere/bank_account_validation_spec.rb', | ||
'spec/spec_helper.rb' | ||
] | ||
s.homepage = 'http://github.com/intothefire/ruby-postcodeanywhere' | ||
s.licenses = ['MIT'] | ||
s.require_paths = ['lib'] | ||
s.rubygems_version = '1.8.5' | ||
s.summary = 'Gem to provide basic access to PostcodeAnywhere services' | ||
|
||
if s.respond_to? :specification_version | ||
s.specification_version = 3 | ||
s.add_dependency('activesupport', '>= 0') | ||
s.add_dependency('httparty', '>= 0') | ||
|
||
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') | ||
s.add_runtime_dependency('httparty', ['>= 0']) | ||
s.add_development_dependency('bundler', ['>= 0']) | ||
s.add_development_dependency('jeweler', ['~> 1.6.2']) | ||
s.add_dependency('bundler', ['>= 0']) | ||
s.add_development_dependency('rspec', ['~> 2.3.0']) | ||
else | ||
s.add_dependency('bundler', ['>= 0']) | ||
s.add_dependency('httparty', ['>= 0']) | ||
s.add_dependency('jeweler', ['~> 1.6.2']) | ||
s.add_dependency('jeweler', ['~> 1.6.2']) | ||
s.add_dependency('rspec', ['~> 2.3.0']) | ||
end | ||
else | ||
s.add_dependency('httparty', ['>= 0']) | ||
s.add_dependency('rspec', ['~> 2.3.0']) | ||
end | ||
s.metadata['rubygems_mfa_required'] = 'true' | ||
end |