Rakefile in puffy-0.3.1 vs Rakefile in puffy-1.0.0
- old
+ new
@@ -12,11 +12,11 @@
Cucumber::Rake::Task.new(:features)
GitHubChangelogGenerator::RakeTask.new :changelog do |config|
config.user = 'opus-codium'
config.project = 'puffy'
- config.exclude_labels = ['skip-changelog']
+ config.exclude_labels = %w[dependencies skip-changelog]
config.future_release = "v#{Puffy::VERSION}"
end
task test: %i[spec features]
@@ -26,7 +26,7 @@
desc 'Generate the puffy language parser'
task gen_parser: 'lib/puffy/parser.tab.rb'
file 'lib/puffy/parser.tab.rb' => 'lib/puffy/parser.y' do
- `racc -S lib/puffy/parser.y`
+ `racc --embedded --frozen --output-status lib/puffy/parser.y`
end