coldshoulder 1.1.0 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/coldshoulder.gemspec +1 -1
- data/lib/coldshoulder/version.rb +1 -1
- data/spec/commander_spec.rb +2 -2
- metadata +2 -2
data/coldshoulder.gemspec
CHANGED
|
@@ -6,7 +6,7 @@ Gem::Specification.new do |gem|
|
|
|
6
6
|
gem.email = ["bryan.mikaelian@gmail.com"]
|
|
7
7
|
gem.description = %q{Generate gitignore files with ease.}
|
|
8
8
|
gem.summary = %q{Written in Ruby, coldshoulder is a command line tool that will let you easily generate a gitignore file.}
|
|
9
|
-
gem.homepage = ""
|
|
9
|
+
gem.homepage = "http://bryanmikaelian.github.com/coldshoulder/"
|
|
10
10
|
|
|
11
11
|
gem.files = `git ls-files`.split($\)
|
|
12
12
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
data/lib/coldshoulder/version.rb
CHANGED
data/spec/commander_spec.rb
CHANGED
|
@@ -18,8 +18,8 @@ describe Coldshoulder::Commander do
|
|
|
18
18
|
end
|
|
19
19
|
|
|
20
20
|
it 'it will not generate a gitingore file if generate is not specified' do
|
|
21
|
-
Coldshoulder::
|
|
22
|
-
Coldshoulder::Commander.new({:command => "
|
|
21
|
+
Coldshoulder::Generator.should_not_receive(:build)
|
|
22
|
+
Coldshoulder::Commander.new({:command => "-v", :language => "Ruby"})
|
|
23
23
|
end
|
|
24
24
|
|
|
25
25
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: coldshoulder
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -33,7 +33,7 @@ files:
|
|
|
33
33
|
- spec/commander_spec.rb
|
|
34
34
|
- spec/generator_spec.rb
|
|
35
35
|
- spec/spec_helper.rb
|
|
36
|
-
homepage:
|
|
36
|
+
homepage: http://bryanmikaelian.github.com/coldshoulder/
|
|
37
37
|
licenses: []
|
|
38
38
|
post_install_message:
|
|
39
39
|
rdoc_options: []
|