pebbles 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,6 @@
1
+ === 0.1.0 / 2010-12-18
2
+
3
+ * 1 major enhancement
4
+
5
+ * Birthday!
6
+
@@ -0,0 +1,6 @@
1
+ History.txt
2
+ Manifest.txt
3
+ README.txt
4
+ Rakefile
5
+ lib/pebbles.rb
6
+ spec/pebbles_spec.rb
@@ -0,0 +1,52 @@
1
+ = pebbles
2
+
3
+ * https://github.com/kwappa/pebbles
4
+
5
+ == DESCRIPTION:
6
+
7
+ namespace for JOKE rubgems
8
+
9
+ == FEATURES/PROBLEMS:
10
+
11
+ * (TBD)
12
+
13
+ == SYNOPSIS:
14
+
15
+ (TBD)
16
+
17
+ == REQUIREMENTS:
18
+
19
+ (TBD)
20
+
21
+ == INSTALL:
22
+
23
+ * gem install pebbles
24
+
25
+ == DEVELOPERS:
26
+
27
+ (TBD)
28
+
29
+ == LICENSE:
30
+
31
+ (The MIT License)
32
+
33
+ Copyright (c) 2010 SHIOYA, Hiromu
34
+
35
+ Permission is hereby granted, free of charge, to any person obtaining
36
+ a copy of this software and associated documentation files (the
37
+ 'Software'), to deal in the Software without restriction, including
38
+ without limitation the rights to use, copy, modify, merge, publish,
39
+ distribute, sublicense, and/or sell copies of the Software, and to
40
+ permit persons to whom the Software is furnished to do so, subject to
41
+ the following conditions:
42
+
43
+ The above copyright notice and this permission notice shall be
44
+ included in all copies or substantial portions of the Software.
45
+
46
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
47
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
48
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
49
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
50
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
51
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
52
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,7 @@
1
+ # -*- coding: utf-8 -*-
2
+ require 'rubygems'
3
+ require 'hoe'
4
+
5
+ Hoe.spec 'pebbles' do
6
+ developer('SHIOYA, Hiromu', 'kwappa.856@gmail.com')
7
+ end
@@ -0,0 +1,14 @@
1
+ module Pebbles
2
+ VERSION = '0.1.0'
3
+
4
+ def pebble
5
+ "I'm not a gemstone."
6
+ end
7
+
8
+ def joking?
9
+ true
10
+ end
11
+
12
+ end
13
+
14
+ include Pebbles
@@ -0,0 +1,6 @@
1
+ require File.join(File.dirname(File.expand_path(__FILE__)), %w(.. lib pebbles))
2
+
3
+ describe Pebbles do
4
+ it { pebble.should eql "I'm not a gemstone." }
5
+ it { should be_joking }
6
+ end
metadata ADDED
@@ -0,0 +1,87 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: pebbles
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 0
7
+ - 1
8
+ - 0
9
+ version: 0.1.0
10
+ platform: ruby
11
+ authors:
12
+ - SHIOYA, Hiromu
13
+ autorequire:
14
+ bindir: bin
15
+ cert_chain: []
16
+
17
+ date: 2010-12-18 00:00:00 +09:00
18
+ default_executable:
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
21
+ name: hoe
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ none: false
25
+ requirements:
26
+ - - ">="
27
+ - !ruby/object:Gem::Version
28
+ segments:
29
+ - 2
30
+ - 8
31
+ - 0
32
+ version: 2.8.0
33
+ type: :development
34
+ version_requirements: *id001
35
+ description: namespace for JOKE rubgems
36
+ email:
37
+ - kwappa.856@gmail.com
38
+ executables: []
39
+
40
+ extensions: []
41
+
42
+ extra_rdoc_files:
43
+ - History.txt
44
+ - Manifest.txt
45
+ - README.txt
46
+ files:
47
+ - History.txt
48
+ - Manifest.txt
49
+ - README.txt
50
+ - Rakefile
51
+ - lib/pebbles.rb
52
+ - spec/pebbles_spec.rb
53
+ has_rdoc: true
54
+ homepage: https://github.com/kwappa/pebbles
55
+ licenses: []
56
+
57
+ post_install_message:
58
+ rdoc_options:
59
+ - --main
60
+ - README.txt
61
+ require_paths:
62
+ - lib
63
+ required_ruby_version: !ruby/object:Gem::Requirement
64
+ none: false
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ segments:
69
+ - 0
70
+ version: "0"
71
+ required_rubygems_version: !ruby/object:Gem::Requirement
72
+ none: false
73
+ requirements:
74
+ - - ">="
75
+ - !ruby/object:Gem::Version
76
+ segments:
77
+ - 0
78
+ version: "0"
79
+ requirements: []
80
+
81
+ rubyforge_project: pebbles
82
+ rubygems_version: 1.3.7
83
+ signing_key:
84
+ specification_version: 3
85
+ summary: namespace for JOKE rubgems
86
+ test_files: []
87
+