Removes lockfile

This commit is contained in:
Nemo 2019-07-24 20:55:08 +05:30
parent 9a97ad3a09
commit 7cf3993af3
3 changed files with 4 additions and 44 deletions

3
.gitignore vendored
View File

@ -6,4 +6,5 @@
/pkg/
/spec/reports/
/tmp/
/vendor/
/vendor/
Gemfile.lock

View File

@ -1,42 +0,0 @@
PATH
remote: .
specs:
outliner (0.1.0)
httparty (~> 0.17)
GEM
remote: https://rubygems.org/
specs:
addressable (2.6.0)
public_suffix (>= 2.0.2, < 4.0)
crack (0.4.3)
safe_yaml (~> 1.0.0)
hashdiff (1.0.0)
httparty (0.17.0)
mime-types (~> 3.0)
multi_xml (>= 0.5.2)
mime-types (3.2.2)
mime-types-data (~> 3.2015)
mime-types-data (3.2019.0331)
minitest (5.8.5)
multi_xml (0.6.0)
public_suffix (3.1.1)
rake (10.5.0)
safe_yaml (1.0.5)
webmock (3.6.0)
addressable (>= 2.3.6)
crack (>= 0.3.2)
hashdiff (>= 0.4.0, < 2.0.0)
PLATFORMS
ruby
DEPENDENCIES
bundler (~> 2.0)
minitest (~> 5.8.4)
outliner!
rake (~> 10.0)
webmock (~> 3.6.0)
BUNDLED WITH
2.0.2

View File

@ -1,5 +1,6 @@
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "outliner/version"
require "outliner/client"
@ -25,7 +26,7 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_dependency "httparty", "~> 0.17"
# spec.add_dependency "httparty", "~> 0.17"
spec.add_development_dependency "bundler", "~> 2.0"
spec.add_development_dependency "rake", "~> 10.0"