Skip to content

Commit

Permalink
Travis fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nyarly committed Aug 25, 2014
1 parent a08cae6 commit 9f5e83c
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 41 deletions.
6 changes: 6 additions & 0 deletions .simplecov
@@ -1,5 +1,11 @@
require 'simplecov-json'

SimpleCov.start do
coverage_dir "corundum/docs/coverage"
add_filter "./spec"
add_filter "vendor/bundle"
formatter SimpleCov::Formatter::MultiFormatter[
SimpleCov::Formatter::HTMLFormatter,
SimpleCov::Formatter::JSONFormatter
]
end
12 changes: 4 additions & 8 deletions Rakefile
@@ -1,11 +1,13 @@
require 'corundum/tasklibs'
require 'mattock/yard_extensions'
#require 'mattock/yard_extensions'

module Corundum
register_project(__FILE__)

tk = Toolkit.new do |tk|
tk.file_lists.project = [__FILE__]
tk.file_lists.test << FileList["spec2/**/*.rb"]
tk.file_lists.test << FileList["spec3/**/*.rb"]
end

tk.in_namespace do
Expand All @@ -26,19 +28,13 @@ module Corundum
end
end
cov = SimpleCov.new(tk, rspec) do |cov|
cov.threshold = 80
cov.threshold = 75
end
gem = GemBuilding.new(tk)
cutter = GemCutter.new(tk,gem)
email = Email.new(tk)
vc = Git.new(tk) do |vc|
vc.branch = "master"
end
task tk.finished_files.build => vc["is_checked_in"]
yd = YARDoc.new(tk) do |yd|
end
all_docs = DocumentationAssembly.new(tk, yd, rspec, cov)
pages = GithubPages.new(all_docs)
end
end

Expand Down
1 change: 1 addition & 0 deletions gemfiles/3.0
@@ -1,5 +1,6 @@
source "https://rubygems.org"

gem "rspec", "~> 3.0.0"
gem "corundum", ">= 0.4.0"

gemspec :path => ".."
46 changes: 16 additions & 30 deletions gemfiles/3.0.lock
Expand Up @@ -7,67 +7,53 @@ PATH
GEM
remote: https://rubygems.org/
specs:
chunky_png (1.3.1)
compass (0.12.6)
chunky_png (~> 1.2)
fssm (>= 0.2.7)
sass (~> 3.2.19)
corundum (0.3.7)
caliph (0.3.1)
corundum (0.4.1)
bundler
compass (>= 0.12.1)
mailfactory (~> 1.4.0)
mattock (~> 0.7.1)
nokogiri
caliph (~> 0.3)
mattock (~> 0.9)
paint (~> 0.8.7)
rdoc
rspec (>= 2.0)
simplecov (>= 0.5.4)
yard
simplecov-json (>= 0.2)
diff-lcs (1.2.5)
docile (1.1.5)
fssm (0.2.10)
json (1.8.1)
mailfactory (1.4.0)
mime-types (>= 1.13.1)
mattock (0.7.1)
mattock (0.9.0)
caliph (~> 0.3.1)
rake (~> 10.0)
tilt (> 0)
valise (~> 1.1.1)
mime-types (2.3)
mini_portile (0.6.0)
multi_json (1.10.1)
nokogiri (1.6.2.1)
mini_portile (= 0.6.0)
paint (0.8.7)
rake (10.3.2)
rdoc (4.1.1)
json (~> 1.4)
rspec (3.0.0)
rspec-core (~> 3.0.0)
rspec-expectations (~> 3.0.0)
rspec-mocks (~> 3.0.0)
rspec-core (3.0.1)
rspec-core (3.0.4)
rspec-support (~> 3.0.0)
rspec-expectations (3.0.1)
rspec-expectations (3.0.4)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.0.0)
rspec-mocks (3.0.1)
rspec-mocks (3.0.4)
rspec-support (~> 3.0.0)
rspec-support (3.0.0)
sass (3.2.19)
simplecov (0.8.2)
rspec-support (3.0.4)
simplecov (0.9.0)
docile (~> 1.1.0)
multi_json
simplecov-html (~> 0.8.0)
simplecov-html (0.8.0)
simplecov-json (0.2)
json
simplecov
tilt (2.0.1)
valise (1.1.1)
yard (0.8.7.4)

PLATFORMS
ruby

DEPENDENCIES
corundum (>= 0.0.25)
corundum (>= 0.4.0)
rspec (~> 3.0.0)
rspec-steps!
12 changes: 9 additions & 3 deletions rspec-steps.gemspec
Expand Up @@ -29,21 +29,27 @@ Gem::Specification.new do |spec|
lib/rspec-steps/duckpunch/object-extensions.rb
doc/README
doc/Specifications
spec/example_group_spec.rb
spec2/example_group_spec.rb
spec3/example_group_spec.rb
spec_help/spec_helper.rb
spec_help/gem_test_suite.rb
spec_help/rspec-sandbox.rb
spec_help/ungemmer.rb
spec_help/file-sandbox.rb
spec3_help/spec_helper.rb
spec3_help/gem_test_suite.rb
spec3_help/rspec-sandbox.rb
spec3_help/ungemmer.rb
spec3_help/file-sandbox.rb
]

spec.test_file = "spec_help/gem_test_suite.rb"
spec.test_file = "spec3_help/gem_test_suite.rb"
spec.licenses = ["MIT"]
spec.require_paths = %w[lib/]
spec.rubygems_version = "1.3.5"

dev_deps = [
["corundum", ">= 0.0.25"],
["corundum", "0.4.0"],
]
if spec.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
Expand Down

0 comments on commit 9f5e83c

Please sign in to comment.