Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Metdata #59

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
language: ruby
script: "bundle exec rake test"
script: "bundle exec rake test && bundle exec rake metadata"
rvm:
- 1.8.7
- 1.9.3
Expand Down
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ group :development, :test do
gem 'beaker-rspec', '2.2.4', :require => false
gem 'serverspec', :require => false
gem 'pry', :require => false
gem 'metadata-json-lint', :require => false
end
5 changes: 5 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,8 @@ task :lint_output do
end

task :lint => :lint_output

desc "Lint metadata.json file"
task :metadata do
sh "metadata-json-lint metadata.json"
end