\n\n\n\n\n\n\n\n{{ content }}\n";
templateSrc = templateSrc.replace(/---[\s\S]*---/, '');
templateSrc = templateSrc.replace(/include (.*?) /g, "include '$1' ");
@@ -870,13 +870,12 @@ module.exports={
"json-schema": "^0.2.2",
"yamljs": "^0.2.4"
},
- "gitHead": "2b42ad69bec7b12a2a66e541a24885e827b32479",
"readme": "# `.about.yml` schema and tools\n\nThe `.about.yml` mechanism allows a project to publish and maintain metadata\nthat can be easily maintained by project owners, that is visible and\naccessible to interested parties, and that can be harvested and processed by\ntools and automated systems. It is implemented using the\n[YAML](https://en.wikipedia.org/wiki/YAML) format.\n\nThe [18F Team API](https://team-api.18f.gov/public/api/) is the original,\nprimary consumer of this information, which in turn provides data for:\n\n- [18F Hub](https://github.com/18F/hub)\n- [18F Dashboard](https://github.com/18F/dashboard)\n- [18F.gsa.gov](https://github.com/18F/18f.gsa.gov)\n\nWe hope that every active 18F project, [working\ngroup](https://pages.18f.gov/grouplet-playbook/working-groups/), and\n[guild](https://pages.18f.gov/grouplet-playbook/guilds/) will publish\n`.about.yml` files in their respective repositories. By feeding this\ninformation through the Team API server and into our Hub, Dashboard, and main\nweb site, cultivation of `.about.yml` files will help make our activity more\neasily transparent to our teammates, and to anyone outside our team who wishes\nto discover what we're working on (and how we work).\n\n## Public domain\n\nThis project is in the worldwide [public domain](LICENSE.md). As stated in [CONTRIBUTING](CONTRIBUTING.md):\n\n> This project is in the public domain within the United States, and copyright and related rights in the work worldwide are waived through the [CC0 1.0 Universal public domain dedication](https://creativecommons.org/publicdomain/zero/1.0/).\n>\n> All contributions to this project will be released under the CC0\n>dedication. By submitting a pull request, you are agreeing to comply\n>with this waiver of copyright interest.\n",
"readmeFilename": "README.md",
"_id": "about-yml-validator@0.1.0",
- "_shasum": "1d659021c46b3887d0198f6e5b59e8159fbb129c",
- "_from": "git+https://github.com/18F/about-yml-npm.git",
- "_resolved": "git+https://github.com/18F/about-yml-npm.git#2b42ad69bec7b12a2a66e541a24885e827b32479"
+ "_shasum": "5e38544ef51846be63b1ff2d3524e3446831f486",
+ "_resolved": "git+https://github.com/18F/about-yml-npm.git#2b42ad69bec7b12a2a66e541a24885e827b32479",
+ "_from": "about-yml-validator@git+https://github.com/18F/about-yml-npm.git"
}
},{}],7:[function(require,module,exports){
diff --git a/go b/go
index de7c5cf..295955c 100755
--- a/go
+++ b/go
@@ -43,7 +43,7 @@ def init
end
def install_gems
- exec_cmd 'bundle install'
+ exec_cmd 'bundle install --without development'
exec_cmd 'git add Gemfile.lock'
end
diff --git a/spec/project_spec.rb b/spec/project_spec.rb
index d855d55..459b532 100644
--- a/spec/project_spec.rb
+++ b/spec/project_spec.rb
@@ -8,22 +8,22 @@
end
it "#{project} should have the basic project header", :type => 'missing' do
visit_url(project)
- page.should have_css(".dashboard-project")
+ expect(page).to have_selector(".dashboard-project")
end
it "#{project} should have a status", :type => 'missing' do
visit_url(project)
- page.should have_css(".dashboard-project .status")
+ expect(page).to have_selector(".dashboard-project .status")
end
it "#{project} should have a contact", :type => 'missing' do
visit_url(project)
- page.should have_css(".project-contact") # add css for "contact"
+ expect(page).to have_selector(".project-contact") # add css for "contact"
end
it "#{project} should have an impact statement", :type => 'missing' do
visit_url(project)
- page.should have_css(".project-impact")
+ expect(page).to have_selector(".project-impact")
end
end
end