0.0
Repository is archived
No commit activity in last 3 years
No release in over 3 years
Get the number of comments and articles per month from Nogizaka46's blog
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.6
>= 0
>= 0

Runtime

 Project Readme

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