kougu 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 9f5537180478b4bcb8adf9ef3902fb6a1317ad20
4
+ data.tar.gz: 6ba92bcb49e568bd119b2f2592d26b65c3368829
5
+ SHA512:
6
+ metadata.gz: 989be5ad1d5108e440741c4cac2383d462125dedd41a71e67b1f3b2103946f36de95ef6b700bef88a31f96e596d8b065ed1199e924084a8e8aa6c0eda77b1bfa
7
+ data.tar.gz: f7c28136b4c0ea6c945d45521a2ab233f0151a3835123b8a7fdefe169f69fadf0ce57293912a26d13ef00b89847275389279382676ac46d633ce66ab9b2c3925
@@ -0,0 +1,2 @@
1
+ .bundle
2
+ pkg
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
@@ -0,0 +1,17 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ kougu (0.0.1)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ rake (10.1.0)
10
+
11
+ PLATFORMS
12
+ ruby
13
+
14
+ DEPENDENCIES
15
+ bundler (~> 1.3.5)
16
+ kougu!
17
+ rake (~> 10.1.0)
@@ -0,0 +1,30 @@
1
+ # kougu
2
+
3
+ Meta-gem for other kougu components.
4
+
5
+ ## License
6
+
7
+ This is free and unencumbered software released into the public domain.
8
+
9
+ Anyone is free to copy, modify, publish, use, compile, sell, or
10
+ distribute this software, either in source code form or as a compiled
11
+ binary, for any purpose, commercial or non-commercial, and by any
12
+ means.
13
+
14
+ In jurisdictions that recognize copyright laws, the author or authors
15
+ of this software dedicate any and all copyright interest in the
16
+ software to the public domain. We make this dedication for the benefit
17
+ of the public at large and to the detriment of our heirs and
18
+ successors. We intend this dedication to be an overt act of
19
+ relinquishment in perpetuity of all present and future rights to this
20
+ software under copyright law.
21
+
22
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
25
+ IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
26
+ OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
27
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
28
+ OTHER DEALINGS IN THE SOFTWARE.
29
+
30
+ For more information, please refer to <http://unlicense.org/>
@@ -0,0 +1 @@
1
+ require 'bundler/gem_tasks'
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+
3
+ lib = File.expand_path('../lib', __FILE__)
4
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
+
6
+ require 'kougu/version'
7
+
8
+ Gem::Specification.new do |s|
9
+ s.name = 'kougu'
10
+ s.version = Kougu::VERSION
11
+ s.authors = ['Niclas Gelin']
12
+ s.email = ['github@niclasgelin.se']
13
+ s.description = 'Meta-gem for other kougu components.'
14
+ s.summary = ''
15
+ s.homepage = 'https://github.com/niclasgelin/kougu'
16
+ s.license = 'http://unlicense.org/'
17
+
18
+ s.files = `git ls-files`.split("\n")
19
+ s.require_paths = ['lib']
20
+
21
+ s.add_development_dependency 'bundler', '~> 1.3.5'
22
+ s.add_development_dependency 'rake', '~> 10.1.0'
23
+ end
File without changes
@@ -0,0 +1,3 @@
1
+ module Kougu
2
+ VERSION = '0.0.1'
3
+ end
metadata ADDED
@@ -0,0 +1,80 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: kougu
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Niclas Gelin
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-10-17 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: 1.3.5
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: 1.3.5
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: 10.1.0
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ~>
39
+ - !ruby/object:Gem::Version
40
+ version: 10.1.0
41
+ description: Meta-gem for other kougu components.
42
+ email:
43
+ - github@niclasgelin.se
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - .gitignore
49
+ - Gemfile
50
+ - Gemfile.lock
51
+ - README.md
52
+ - Rakefile
53
+ - kougu.gemspec
54
+ - lib/kougu.rb
55
+ - lib/kougu/version.rb
56
+ homepage: https://github.com/niclasgelin/kougu
57
+ licenses:
58
+ - http://unlicense.org/
59
+ metadata: {}
60
+ post_install_message:
61
+ rdoc_options: []
62
+ require_paths:
63
+ - lib
64
+ required_ruby_version: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - '>='
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ required_rubygems_version: !ruby/object:Gem::Requirement
70
+ requirements:
71
+ - - '>='
72
+ - !ruby/object:Gem::Version
73
+ version: '0'
74
+ requirements: []
75
+ rubyforge_project:
76
+ rubygems_version: 2.1.5
77
+ signing_key:
78
+ specification_version: 4
79
+ summary: ''
80
+ test_files: []