Skip to content
This repository has been archived by the owner on Apr 14, 2021. It is now read-only.

Commit

Permalink
Auto merge of #5455 - googya:master, r=colby-swandale
Browse files Browse the repository at this point in the history
fix typo

fix typo
  • Loading branch information
bundlerbot committed Feb 21, 2017
2 parents c73088d + c0e0431 commit 747fee1
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 17 deletions.
16 changes: 8 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Bugfixes:

Bugfixes:

- fix the resolver attemting to activate ruby-platform gems when the bundle is only for other platforms (#5349, #5356, @segiddins)
- fix the resolver attempting to activate ruby-platform gems when the bundle is only for other platforms (#5349, #5356, @segiddins)
- avoid re-resolving a locked gemfile that uses `gemspec` and includes development dependencies (#5349, @segiddins)

## 1.14.2 (2017-01-22)
Expand Down Expand Up @@ -144,7 +144,7 @@ Bugfixes:

- allow `Settings` to be initialized without a root directory (@m1k3)
- allow specifying ruby engines in the gemfile as a symbol (#4919, @JuanitoFatas)
- avoid an execption when using `bundler/deployment` with Vlad (@srbaker)
- avoid an exception when using `bundler/deployment` with Vlad (@srbaker)
- ensure redefined methods have the same visibility as the one they're replacing, fixing `Kernel.require` failing on JRuby (#4975, @segiddins)
- ensure that Bundler won't complain about a corrupt lockfile when no lockfile exists when using `gemspec` in the Gemfile (#5006, @segiddins)
- fail gracefully when parsing the metadata for a gemspec from the compact index fails (@segiddins)
Expand Down Expand Up @@ -1380,13 +1380,13 @@ Bugfixes:

Features:

- compatibile with Ruby 2.0.0-preview2
- compatibile with Rubygems 2.0.0.preview2 (@drbrain, @evanphx)
- compatible with Ruby 2.0.0-preview2
- compatible with Rubygems 2.0.0.preview2 (@drbrain, @evanphx)
- ruby 2.0 added to the `:ruby19` ABI-compatible platform
- lazy load YAML, allowing Psych to be specified in the Gemfile
- significant performance improvements (@cheald, #2181)
- `inject` command for scripted Gemfile additions (Engine Yard)
- :github option uses slashless arguements as repo owner (@rking)
- :github option uses slashless arguments as repo owner (@rking)
- `open` suggests gem names for typos (@jdelStrother)
- `update` reports non-existent gems (@jdelStrother)
- `gem` option --test can generate rspec stubs (@MafcoCinco)
Expand Down Expand Up @@ -1810,7 +1810,7 @@ Features:
- Add bundle clean. Removes unused gems from --path directory
- Initial Gemcutter Endpoint API work, BAI Fetching source index
- Added bundle install --standalone
- Ignore Gemfile.lock when buliding new gems
- Ignore Gemfile.lock when building new gems
- Make it possible to override a .gemspec dependency's source in the
Gemfile

Expand Down Expand Up @@ -1861,7 +1861,7 @@ Bugfixes:

Features:

- Compatability with Rubygems 1.8.10 installer changes
- Compatibility with Rubygems 1.8.10 installer changes
- Report gem installation failures clearly (@rwilcox, #1380)
- Useful error for cap and vlad on first deploy (@nexmat, @kirs)

Expand Down Expand Up @@ -2611,7 +2611,7 @@ Bugfixes:
- make the tests platform agnostic so we can confirm that they're green on JRuby
- fixes for Ruby 1.9

## 0.9.5 (Feburary 12, 2010)
## 0.9.5 (February 12, 2010)

Features:

Expand Down
2 changes: 1 addition & 1 deletion lib/bundler/errors.rb
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def message
class NoSpaceOnDeviceError < PermissionError
def message
"There was an error while trying to #{action} `#{@path}`. " \
"There was insufficent space remaining on the device."
"There was insufficient space remaining on the device."
end

status_code(31)
Expand Down
2 changes: 1 addition & 1 deletion lib/bundler/installer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def initialize(root, definition)
# Bundler returns a warning message stating so and this method returns.
#
# Fourthly, Bundler checks if the default lockfile (Gemfile.lock) exists, and if so
# then proceeds to set up a defintion based on the default gemfile (Gemfile) and the
# then proceeds to set up a definition based on the default gemfile (Gemfile) and the
# default lock file (Gemfile.lock). However, this is not the case if the platform is different
# to that which is specified in Gemfile.lock, or if there are any missing specs for the gems.
#
Expand Down
2 changes: 1 addition & 1 deletion lib/bundler/setup.rb
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

unless ENV["BUNDLE_POSTIT_TRAMPOLINING_VERSION"]
# Add bundler to the load path after disabling system gems
# This is guarenteed to be done already if we've trampolined
# This is guaranteed to be done already if we've trampolined
bundler_lib = File.expand_path("../..", __FILE__)
$LOAD_PATH.unshift(bundler_lib) unless $LOAD_PATH.include?(bundler_lib)
end
Expand Down
2 changes: 1 addition & 1 deletion lib/bundler/shared_helpers.rb
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ def prints_major_deprecations?
def deprecate_gemfile(gemfile)
return unless gemfile && File.basename(gemfile) == "Gemfile"
Bundler::SharedHelpers.major_deprecation \
"gems.rb and gems.locked will be prefered to Gemfile and Gemfile.lock."
"gems.rb and gems.locked will be preferred to Gemfile and Gemfile.lock."
end

extend self
Expand Down
4 changes: 2 additions & 2 deletions spec/bundler/plugin/index_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
expect(new_index.plugin_path(plugin_name)).to eq(lib_path(plugin_name))
end

it "load_paths are persistant" do
it "load_paths are persistent" do
new_index = Index.new
expect(new_index.load_paths(plugin_name)).to eq([lib_path(plugin_name).join("lib").to_s])
end
Expand Down Expand Up @@ -95,7 +95,7 @@
allow(File).to receive(:open).and_yield(file)
end

it "should not save it with next registed hook" do
it "should not save it with next registered hook" do
expect(file).to receive(:puts) do |content|
expect(content).not_to include("not-there")
end
Expand Down
4 changes: 2 additions & 2 deletions spec/other/major_deprecation_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@
gem "rack"
G

expect(warnings).to have_major_deprecation("gems.rb and gems.locked will be prefered to Gemfile and Gemfile.lock.")
expect(warnings).to have_major_deprecation("gems.rb and gems.locked will be preferred to Gemfile and Gemfile.lock.")
end

context "with flags" do
Expand Down Expand Up @@ -154,7 +154,7 @@
Bundler.setup
RUBY

expect(warnings).to have_major_deprecation("gems.rb and gems.locked will be prefered to Gemfile and Gemfile.lock.")
expect(warnings).to have_major_deprecation("gems.rb and gems.locked will be preferred to Gemfile and Gemfile.lock.")
end
end

Expand Down
2 changes: 1 addition & 1 deletion spec/runtime/require_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@
expect(err).to lack_errors
end

it "does not mangle explictly given requires" do
it "does not mangle explicitly given requires" do
gemfile <<-G
path "#{lib_path}"
gem 'jquery-rails', :require => 'jquery-rails'
Expand Down

0 comments on commit 747fee1

Please sign in to comment.