new versions of steam and listen + better message when trying to authenticate + bump version to 2.0.0.rc3
did
committed Nov 13, 2015
commit 38fee8bc7a3ba058f3ddcb8620ad066090eab5af
Showing 3
changed files with
6 additions
and 4 deletions
locomotive/wagon/commands/authenticate_command.rb b/lib/locomotive/wagon/commands/authenticate_command.rb
+2
-1
| @@ | @@ -24,9 +24,10 @@ module Locomotive::Wagon |
| def fetch_api_key | |
| if my_account | |
| + | shell.say "\nYou have been successfully authenticated.", :green |
| my_account.api_key | |
| else | |
| - | shell.say "No account found for #{email} or invalid credentials", :yellow |
| + | shell.say "\nNo account found for #{email} or invalid credentials", :yellow |
| # shall we create a new account? | |
| if shell.yes?('Do you want to create a new account? [Y/N]') | |
locomotive/wagon/version.rb b/lib/locomotive/wagon/version.rb
+1
-1
| @@ | @@ -1,5 +1,5 @@ |
| module Locomotive | |
| module Wagon | |
| - | VERSION = '2.0.0.rc2' |
| + | VERSION = '2.0.0.rc3' |
| end | |
| end | |
locomotivecms_wagon.gemspec
+3
-2
| @@ | @@ -11,6 +11,7 @@ Gem::Specification.new do |gem| |
| gem.description = %q{The LocomotiveCMS wagon is a site generator for the LocomotiveCMS engine} | |
| gem.summary = %q{The LocomotiveCMS wagon is a site generator for the LocomotiveCMS engine powered by all the efficient and modern HTML development tools (Haml, SASS, Compass, Less).} | |
| gem.homepage = 'http://www.locomotivecms.com' | |
| + | gem.license = 'MIT' |
| gem.files = `git ls-files`.split($/) | |
| gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } | |
| @@ | @@ -26,9 +27,9 @@ Gem::Specification.new do |gem| |
| gem.add_dependency 'netrc', '~> 0.10.3' | |
| gem.add_dependency 'locomotivecms_coal', '~> 1.0.0.rc1' | |
| - | gem.add_dependency 'locomotivecms_steam', '~> 1.0.0.rc2' |
| + | gem.add_dependency 'locomotivecms_steam', '~> 1.0.0.rc3' |
| - | gem.add_dependency 'listen', '~> 2.10.0' |
| + | gem.add_dependency 'listen', '~> 3.0.4' |
| gem.add_dependency 'rack-livereload', '~> 0.3.15' | |
| gem.add_dependency 'yui-compressor', '~> 0.12.0' | |