blueprinter-rb 1.0.0 → 1.1.0

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/Rakefile DELETED
@@ -1,30 +0,0 @@
1
- require 'rdoc/task'
2
- require 'bundler/gem_tasks'
3
- require 'rake/testtask'
4
- require 'rspec/core/rake_task'
5
-
6
- begin
7
- require 'bundler/setup'
8
- rescue LoadError
9
- puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
10
- end
11
-
12
- RDoc::Task.new(:rdoc) do |rdoc|
13
- rdoc.rdoc_dir = 'rdoc'
14
- rdoc.title = 'Blueprinter'
15
- rdoc.options << '--line-numbers'
16
- rdoc.rdoc_files.include('README.md')
17
- rdoc.rdoc_files.include('lib/**/*.rb')
18
- end
19
-
20
- RSpec::Core::RakeTask.new(:spec) do |t|
21
- t.rspec_opts = '--pattern spec/**/*_spec.rb --warnings'
22
- end
23
-
24
- Rake::TestTask.new(:benchmarks) do |t|
25
- t.libs << 'spec'
26
- t.pattern = 'spec/benchmarks/**/*_test.rb'
27
- t.verbose = false
28
- end
29
-
30
- task default: :spec