[Groonga-commit] groonga/groonga-log at 02b6cd1 [master] Make template of groonga-log

Back to archive index

HorimotoYasuhiro null+****@clear*****
Thu Sep 21 22:36:05 JST 2017


HorimotoYasuhiro	2017-09-21 22:36:05 +0900 (Thu, 21 Sep 2017)

  New Revision: 02b6cd1fce59338ee4eb35b0400c8b50b860ee66
  https://github.com/groonga/groonga-log/commit/02b6cd1fce59338ee4eb35b0400c8b50b860ee66

  Message:
    Make template of groonga-log

  Added files:
    .gitignore
    Gemfile
    README.md
    Rakefile
    bin/console
    bin/setup
    groonga-log.gemspec
    lib/groonga/log.rb
    lib/groonga/log/version.rb

  Added: .gitignore (+9 -0) 100644
===================================================================
--- /dev/null
+++ .gitignore    2017-09-21 22:36:05 +0900 (0cb6eeb)
@@ -0,0 +1,9 @@
+/.bundle/
+/.yardoc
+/Gemfile.lock
+/_yardoc/
+/coverage/
+/doc/
+/pkg/
+/spec/reports/
+/tmp/

  Added: Gemfile (+4 -0) 100644
===================================================================
--- /dev/null
+++ Gemfile    2017-09-21 22:36:05 +0900 (86abeb4)
@@ -0,0 +1,4 @@
+source 'https://rubygems.org'
+
+# Specify your gem's dependencies in groonga-log.gemspec
+gemspec

  Added: README.md (+37 -0) 100644
===================================================================
--- /dev/null
+++ README.md    2017-09-21 22:36:05 +0900 (7ebb748)
@@ -0,0 +1,37 @@
+# README
+
+## Name
+
+groonga-log
+
+## Description
+
+TODO:
+
+## Installation
+
+Add this line to your application's Gemfile:
+
+```ruby
+gem 'groonga-log'
+```
+
+And then execute:
+
+    $ bundle
+
+Or install it yourself as:
+
+    $ gem install groonga-log
+
+## Usage
+
+TODO: Write usage instructions here
+
+## Dependencies
+
+TODO:
+
+## License
+
+LGPLv2.1 or later. See doc/text/lgpl-2.1.txt for details.

  Added: Rakefile (+2 -0) 100644
===================================================================
--- /dev/null
+++ Rakefile    2017-09-21 22:36:05 +0900 (43022f7)
@@ -0,0 +1,2 @@
+require "bundler/gem_tasks"
+task :default => :spec

  Added: bin/console (+14 -0) 100755
===================================================================
--- /dev/null
+++ bin/console    2017-09-21 22:36:05 +0900 (5961c3a)
@@ -0,0 +1,14 @@
+#!/usr/bin/env ruby
+
+require "bundler/setup"
+require "groonga/log"
+
+# You can add fixtures and/or initialization code here to make experimenting
+# with your gem easier. You can also use a different console, if you like.
+
+# (If you use this, don't forget to add pry to your Gemfile!)
+# require "pry"
+# Pry.start
+
+require "irb"
+IRB.start

  Added: bin/setup (+8 -0) 100755
===================================================================
--- /dev/null
+++ bin/setup    2017-09-21 22:36:05 +0900 (dce67d8)
@@ -0,0 +1,8 @@
+#!/usr/bin/env bash
+set -euo pipefail
+IFS=$'\n\t'
+set -vx
+
+bundle install
+
+# Do any other automated setup that you need to do here

  Added: groonga-log.gemspec (+40 -0) 100644
===================================================================
--- /dev/null
+++ groonga-log.gemspec    2017-09-21 22:36:05 +0900 (9c814c6)
@@ -0,0 +1,40 @@
+# -*- mode: ruby; coding: utf-8 -*-
+# #
+# # Copyright (C) 2017  Yasuhiro Horimoto <horimoto �� clear-code.com>
+# #
+# # This library is free software; you can redistribute it and/or
+# # modify it under the terms of the GNU Lesser General Public
+# # License as published by the Free Software Foundation; either
+# # version 2.1 of the License, or (at your option) any later version.
+# #
+# # This library is distributed in the hope that it will be useful,
+# # but WITHOUT ANY WARRANTY; without even the implied warranty of
+# # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# # Lesser General Public License for more details.
+# #
+# # You should have received a copy of the GNU Lesser General Public
+# # License along with this library; if not, write to the Free Software
+# # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+
+lib = File.expand_path('../lib', __FILE__)
+$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
+require 'groonga/log/version'
+
+Gem::Specification.new do |spec|
+  spec.name          = "groonga-log"
+  spec.version       = Groonga::Log::VERSION
+
+  spec.authors       = ["Horimoto Yasuhiro"]
+  spec.email         = ["horimoto �� clear-code.com"]
+
+  spec.files         = `git ls-files -z`.split("\x0").reject do |f|
+    f.match(%r{^(test|spec|features)/})
+  end
+
+  spec.homepage      = "https://github.com/groonga/groonga-log"
+  spec.licenses      = ["LGPLv2.1+"]
+  spec.require_paths = ["lib"]
+
+  spec.add_development_dependency "bundler", "~> 1.13"
+  spec.add_development_dependency "rake", "~> 10.0"
+end

  Added: lib/groonga/log.rb (+7 -0) 100644
===================================================================
--- /dev/null
+++ lib/groonga/log.rb    2017-09-21 22:36:05 +0900 (0d55c6f)
@@ -0,0 +1,7 @@
+require "groonga/log/version"
+
+module Groonga
+  module Log
+    # Your code goes here...
+  end
+end

  Added: lib/groonga/log/version.rb (+5 -0) 100644
===================================================================
--- /dev/null
+++ lib/groonga/log/version.rb    2017-09-21 22:36:05 +0900 (4df150a)
@@ -0,0 +1,5 @@
+module Groonga
+  module Log
+    VERSION = "0.1.0"
+  end
+end
-------------- next part --------------
HTML����������������������������...
URL: https://lists.osdn.me/mailman/archives/groonga-commit/attachments/20170921/721f7229/attachment-0001.htm 



More information about the Groonga-commit mailing list
Back to archive index