December 2013 Summaries
2 posts from Semaphore
Filter
Month:
Year:
Post Summaries
Back to Blog
Scheduled for December 30th, the upcoming platform update introduces several new features and improvements, including the integration of Ruby 2.1.0 following its Christmas release and an upgrade to Firefox version 26. Additionally, developers using Cucumber may need to update the selenium-webdriver gem due to these changes. To enhance the efficiency of building Node.js and web-only projects, the update includes preinstalled versions of Grunt, a JavaScript task runner, and Bower, a package manager for the web, alongside the availability of Leiningen, a versatile tool for Clojure. Detailed information can be found in the changelog, and the platform encourages users to join their Discord for further discussion.
Dec 26, 2013
119 words in the original blog post.
Brakeman is a static code analysis tool designed for scanning Ruby on Rails applications to detect common security vulnerabilities before deployment. It is recommended to integrate Brakeman into the continuous delivery pipeline, enabling scans on every commit to identify and address potential issues early in the development process. Installation is straightforward by including it in the Gemfile and configuring the build setup to execute Brakeman with the command `bundle exec brakeman -z`, which ensures the build fails if vulnerabilities are detected, preventing them from reaching production. Integrating Brakeman into the CI process enhances security measures for Rails applications, making it a valuable addition to development workflows.
Dec 16, 2013
180 words in the original blog post.