Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

nogizaka_blog

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nogizaka_blog

  • 0.1.9
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

NogizakaBlog

Build Status

Get the number of comments and articles per month from Nogizaka46's blog

Installation

Add this line to your application's Gemfile:

gem 'nogizaka_blog'

And then execute:

$ bundle

Or install it yourself as:

$ gem install nogizaka_blog

Usage

require 'nogizaka_blog'


nogi = NogizakaBlog::Amazing.new('201508')

nogi.each do |name, comment, article|
  puts "#{name.to_kanji}(#{name}) #{comment} / #{article}"
end

Generate JSON example

require 'nogizaka_blog'

@nogi = NogizakaBlog::Amazing.new('201508')

p @nogi.member_size

def gen_json
  last = @nogi.member_size - 1
  print '['
  @nogi.each_with_index do |(name, comment, article), idx|
    if idx == last
      print %Q({"name": "#{name.to_kanji}", "comment": #{comment}, "article": #{article}})
    else
      print %Q({"name": "#{name.to_kanji}", "comment": #{comment}, "article": #{article}},)
    end
  end
  print ']'
end

gen_json

CLI

Basic usage in Terminal

$ nogizaka_blog when YEARMONTH [--sort comment/article]

(e.g. September 2015)

$ nogizaka_blog when 201509

screenshots

Contributing

  1. Fork it ( https://github.com/hachy/nogizaka_blog/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

FAQs

Package last updated on 01 May 2016

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc