kumade 0.0.7 → 0.0.8

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.
@@ -84,10 +84,8 @@ module Kumade
84
84
  else
85
85
  Jammit.package!
86
86
 
87
- if git_dirty?
88
- success(success_message)
89
- git_add_and_commit_all_assets_in(jammit_assets_path)
90
- end
87
+ success(success_message)
88
+ git_add_and_commit_all_assets_in(jammit_assets_path)
91
89
  end
92
90
  rescue => jammit_error
93
91
  error("Error: #{jammit_error.class}: #{jammit_error.message}")
@@ -1,3 +1,3 @@
1
1
  module Kumade
2
- VERSION = "0.0.7"
2
+ VERSION = "0.0.8"
3
3
  end
@@ -278,21 +278,6 @@ describe Kumade::Deployer, "#package_with_jammit" do
278
278
 
279
279
  subject.package_with_jammit
280
280
  end
281
-
282
- context "no assets were added" do
283
- before { subject.stub(:git_dirty? => false) }
284
-
285
- it "does not call git_add_and_commit_all_jammit_assets" do
286
- subject.should_not_receive(:git_add_and_commit_all_assets_in)
287
-
288
- subject.package_with_jammit
289
- end
290
-
291
- it "does not print a success message" do
292
- subject.should_not_receive(:success)
293
- subject.package_with_jammit
294
- end
295
- end
296
281
  end
297
282
 
298
283
  describe Kumade::Deployer, "#package_with_more" do
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: kumade
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.0.7
5
+ version: 0.0.8
6
6
  platform: ruby
7
7
  authors:
8
8
  - Gabe Berke-Williams