
Security News
New Website “Is It Really FOSS?” Tracks Transparency in Open Source Distribution Models
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
ActiveBlog is Rails engine written to satisfy minimal blogging requirements.
The ActiveBlog BlogPost model:
create_table :blog_posts do |t|
t.string :title
t.string :body
t.boolean :draft
t.datetime :published_at
t.string :cached_slug
t.string :custom_url
t.timestamps
end
It is by no means a full blogging engine. There are no categories, no comments, and certainly no tagging.
ActiveBlog has the following dependencies:
Add the following line to your Gemfile
gem 'active_blog'
Run Bundler
bundle update --source active_blog
Run the generator
./script/rails generate active_blog:install
Follow the installer's directions
Install the migrations
rake db:migrate
Start your server with foreman
or rails s
and visit your new blog located at:
http://localhost:5000/blog
To create a new blog post, visit the admin area located at:
http://localhost:5000/admin/blog_posts
Setup the development and test databases
rake app:db:setup
rake app:db:test:clone
Running tests
rake test
FAQs
Unknown package
We found that active_blog demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.