corundum 0.4.0 → 0.4.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.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- NTc0ZDU1MjUxZGYyMGE5YThlYzBkMTRhMmIwNzBjMDA1NjViMmJhMg==
4
+ MDYzZGYwYjJmYjc5NzM3YmVkZmZiOTkyZWNhMjY0NTAzMjE2ZDVhZg==
5
5
  data.tar.gz: !binary |-
6
- ZDE0NzFhN2ZlODViMjNhZjc1NWEwNzdlNmU2MmRjMWFkYTgxMzVjMA==
6
+ Y2IwMTI1YTkwYWVmMTQ4MjYwYjBiMGI2ZjM5NDI2Zjg3NmY4NjVkNw==
7
7
  !binary "U0hBNTEy":
8
8
  metadata.gz: !binary |-
9
- NDkwYmUwNGMzYmQxMzQxMTgzMWI2NWY5NTQ3NDgwZGVjMjMxMGQ1MzNkNTll
10
- N2JlYzg1ZDk2YzY3M2ViN2VkNzA2YmQ3ZTY5ZDQyNzI5NWMxOTM0YWM4ZTlj
11
- YWM0YjA4ZGJjYmEwNzEzY2ZjNzMxMWI4ZDlhNjNiYjYzYWRlMjg=
9
+ YjgyNGVmYjRlMTMwYjk3ZWVlNjI0ZDM3NDk3MzEyZjQ2MjY3YmQwZTgxM2I5
10
+ ZjI3YzJjZjE5YTIzYWZhNTRhOGM2ODc0YzVmYWYzODcxZDJhOTdkYWNlMTBm
11
+ YjZlNmZkMjUwNTY0M2ZlMzk4NmFlMGY5NjdlOTBlMzM0ZTU2NWY=
12
12
  data.tar.gz: !binary |-
13
- NmNlMTE0MDY2ZTFlNjJlZmI5OWU3YWFmOGJjODU4YWEyZjc0ODYxMjY1Mjk5
14
- Mjk5MmFhMDQyMzkzMWU2MjkwM2I0MjY0MTJiMzlkYjA3MjY5OTI2ZDBiMDFl
15
- YmFiNDExMDk1ZWMwNDdhYzc1ZGY1MGNkYjdlY2MyNDk4NmVhNmE=
13
+ MDRmYmE5ZDcxNjQ0OWQ2YjEyOTllNWE0ZDAzZmYyYTQ0MDc5YjcxNDFhNmE3
14
+ MjQzZjc5NjVlNTQxNDA0ZDNiNDI5ZjQ4MmUwNDg2MjA3NGQxNmM4MWYxODI1
15
+ MWExZmJjZmMzZDIyMGUzOTFkMThlZDg2YWUwNmI2ZTI2OTM5ZjE=
@@ -90,7 +90,7 @@ module Corundum
90
90
  task :run_continuous_integration
91
91
 
92
92
  desc "Run quality assurance tasks"
93
- qa_task = task :qa => :run_quality_assurance do
93
+ qa_task = task(:qa => :run_quality_assurance) do
94
94
  require 'corundum/qa-report'
95
95
  puts QA::ReportFormatter.new(qa_rejections).to_s
96
96
  unless qa_rejections.all?(&:passed)
@@ -117,11 +117,9 @@ module Corundum
117
117
 
118
118
  desc "Build the package"
119
119
  build_task = task :build => [qa_file.abspath, :preflight, build_file.abspath]
120
- file build_file.abspath.tap{|value| puts "#{__FILE__}:#{__LINE__} => #{value.inspect}"} =>
120
+ file build_file.abspath =>
121
121
  [finished_dir.abspath] + file_lists.code + file_lists.project do |task|
122
- puts "\n#{__FILE__}:#{__LINE__} => #{task.name.inspect}"
123
122
  build_task.invoke
124
- puts "\n#{__FILE__}:#{__LINE__} => #{task.name.inspect}"
125
123
  touch task.name
126
124
  end
127
125
 
@@ -158,7 +158,7 @@ module Corundum
158
158
  push.options[:args] = [gem_path.abspath]
159
159
  push.execute
160
160
  end
161
- task :push => build_file.abspath.tap{|value| puts "#{__FILE__}:#{__LINE__} => #{value.inspect}"}
161
+ task :push => build_file.abspath
162
162
  end
163
163
  task :release => in_namespace(:push)
164
164
  task :preflight => in_namespace(:is_unpushed)
@@ -5,6 +5,7 @@ module Corundum
5
5
  describe "A fairly complete Rakefile" do
6
6
  before :each do
7
7
  tk = Toolkit.new do |tk|
8
+ tk.gemspec_path = "corundum.gemspec"
8
9
  end
9
10
 
10
11
  tk.in_namespace do
@@ -12,10 +13,7 @@ module Corundum
12
13
  cov = SimpleCov.new(tk, rspec)
13
14
  gem = GemBuilding.new(tk)
14
15
  cutter = GemCutter.new(tk, gem)
15
- email = Email.new(tk)
16
16
  vc = Git.new(tk)
17
- docs = YARDoc.new(tk)
18
- pages = GithubPages.new(docs)
19
17
  end
20
18
  end
21
19
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: corundum
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Judson Lester
@@ -281,7 +281,7 @@ metadata: {}
281
281
  post_install_message:
282
282
  rdoc_options:
283
283
  - --title
284
- - corundum-0.4.0 RDoc
284
+ - corundum-0.4.1 RDoc
285
285
  require_paths:
286
286
  - lib/
287
287
  required_ruby_version: !ruby/object:Gem::Requirement