1
0
mirror of https://github.com/meineerde/rackstash.git synced 2025-10-17 14:01:01 +00:00

Add license headers to all code files

This commit is contained in:
Holger Just 2017-01-15 18:37:33 +01:00
parent 7e937904c0
commit 750da262b7
11 changed files with 53 additions and 0 deletions

View File

@ -1,3 +1,8 @@
# Copyright 2017 Holger Just
#
# This software may be modified and distributed under the terms
# of the MIT license. See the LICENSE.txt file for details.
sudo: false
language: ruby
rvm:

View File

@ -1,3 +1,8 @@
# Copyright 2017 Holger Just
#
# This software may be modified and distributed under the terms
# of the MIT license. See the LICENSE.txt file for details.
source 'https://rubygems.org'
# Specify your gem's dependencies in rackstash.gemspec

View File

@ -1,3 +1,8 @@
# Copyright 2017 Holger Just
#
# This software may be modified and distributed under the terms
# of the MIT license. See the LICENSE.txt file for details.
require "bundler/gem_tasks"
require "rspec/core/rake_task"

View File

@ -1,4 +1,8 @@
#!/usr/bin/env ruby
# Copyright 2017 Holger Just
#
# This software may be modified and distributed under the terms
# of the MIT license. See the LICENSE.txt file for details.
require "bundler/setup"
require "rackstash"

View File

@ -1,4 +1,9 @@
#!/usr/bin/env bash
# Copyright 2017 Holger Just
#
# This software may be modified and distributed under the terms
# of the MIT license. See the LICENSE.txt file for details.
set -euo pipefail
IFS=$'\n\t'
set -vx

View File

@ -1,3 +1,7 @@
#!/usr/bin/env ruby
# Copyright 2017 Holger Just
#
# This software may be modified and distributed under the terms
# of the MIT license. See the LICENSE.txt file for details.
require "rackstash"

View File

@ -1,3 +1,8 @@
# Copyright 2017 Holger Just
#
# This software may be modified and distributed under the terms
# of the MIT license. See the LICENSE.txt file for details.
require "rackstash/version"
module Rackstash

View File

@ -1,3 +1,8 @@
# Copyright 2017 Holger Just
#
# This software may be modified and distributed under the terms
# of the MIT license. See the LICENSE.txt file for details.
module Rackstash
VERSION = "0.1.0"
end

View File

@ -1,4 +1,9 @@
# coding: utf-8
# Copyright 2017 Holger Just
#
# This software may be modified and distributed under the terms
# of the MIT license. See the LICENSE.txt file for details.
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'rackstash/version'

View File

@ -1,3 +1,8 @@
# Copyright 2017 Holger Just
#
# This software may be modified and distributed under the terms
# of the MIT license. See the LICENSE.txt file for details.
require 'spec_helper'
describe Rackstash do

View File

@ -1,2 +1,7 @@
# Copyright 2017 Holger Just
#
# This software may be modified and distributed under the terms
# of the MIT license. See the LICENSE.txt file for details.
$LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
require 'rackstash'