Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7a2df591c0 | ||
|
|
4923265dea | ||
|
|
79421580e9 | ||
|
|
cabde9e5f1 | ||
|
|
d5317b8e17 |
@@ -1,5 +1,14 @@
|
|||||||
|
#1.1.5
|
||||||
|
* Fixed problem with version number being incorrect.
|
||||||
|
|
||||||
|
#1.1.4
|
||||||
|
* Make sure symlink conflicts are explicitly communicated to a user and symlinks are not silently overwritten
|
||||||
|
* Use real paths of symlinks when linking a castle into home
|
||||||
|
* Fix a problem when in a diff when asking a user to resolve a conflict
|
||||||
|
* Some code refactoring and fixes
|
||||||
|
|
||||||
#1.1.3
|
#1.1.3
|
||||||
* Allow a destinaton to be passed when cloning a castle
|
* Allow a destination to be passed when cloning a castle
|
||||||
* Make sure `homesick edit` opens default editor in the root of the given castle
|
* Make sure `homesick edit` opens default editor in the root of the given castle
|
||||||
* Fixed bug when diffing edited files
|
* Fixed bug when diffing edited files
|
||||||
* Fixed crashing bug when attempting to diff directories
|
* Fixed crashing bug when attempting to diff directories
|
||||||
|
|||||||
@@ -2,16 +2,16 @@
|
|||||||
# DO NOT EDIT THIS FILE DIRECTLY
|
# DO NOT EDIT THIS FILE DIRECTLY
|
||||||
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
||||||
# -*- encoding: utf-8 -*-
|
# -*- encoding: utf-8 -*-
|
||||||
# stub: homesick 1.1.4 ruby lib
|
# stub: homesick 1.1.5 ruby lib
|
||||||
|
|
||||||
Gem::Specification.new do |s|
|
Gem::Specification.new do |s|
|
||||||
s.name = "homesick".freeze
|
s.name = "homesick".freeze
|
||||||
s.version = "1.1.4"
|
s.version = "1.1.5"
|
||||||
|
|
||||||
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
||||||
s.require_paths = ["lib".freeze]
|
s.require_paths = ["lib".freeze]
|
||||||
s.authors = ["Joshua Nichols".freeze, "Yusuke Murata".freeze]
|
s.authors = ["Joshua Nichols".freeze, "Yusuke Murata".freeze]
|
||||||
s.date = "2017-03-22"
|
s.date = "2017-03-23"
|
||||||
s.description = "\n Your home directory is your castle. Don't leave your dotfiles behind.\n \n\n Homesick is sorta like rip, but for dotfiles. It uses git to clone a repository containing dotfiles, and saves them in ~/.homesick. It then allows you to symlink all the dotfiles into place with a single command. \n\n ".freeze
|
s.description = "\n Your home directory is your castle. Don't leave your dotfiles behind.\n \n\n Homesick is sorta like rip, but for dotfiles. It uses git to clone a repository containing dotfiles, and saves them in ~/.homesick. It then allows you to symlink all the dotfiles into place with a single command. \n\n ".freeze
|
||||||
s.email = ["josh@technicalpickles.com".freeze, "info@muratayusuke.com".freeze]
|
s.email = ["josh@technicalpickles.com".freeze, "info@muratayusuke.com".freeze]
|
||||||
s.executables = ["homesick".freeze]
|
s.executables = ["homesick".freeze]
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ module Homesick
|
|||||||
module Version
|
module Version
|
||||||
MAJOR = 1
|
MAJOR = 1
|
||||||
MINOR = 1
|
MINOR = 1
|
||||||
PATCH = 3
|
PATCH = 5
|
||||||
|
|
||||||
STRING = [MAJOR, MINOR, PATCH].compact.join('.')
|
STRING = [MAJOR, MINOR, PATCH].compact.join('.')
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user