yonce 0.1
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.
- data/README.md +10 -0
- data/bin/yonce +6 -0
- data/lib/yonce.rb +11 -0
- data/lib/yonce/version.rb +5 -0
- data/yonce.gemspec +24 -0
- metadata +51 -0
data/README.md
ADDED
data/bin/yonce
ADDED
data/lib/yonce.rb
ADDED
data/yonce.gemspec
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
$LOAD_PATH.unshift(File.expand_path('../lib/', __FILE__))
|
4
|
+
require 'yonce/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = 'yonce'
|
8
|
+
s.version = Yonce::VERSION
|
9
|
+
s.homepage = 'http://example.com/'
|
10
|
+
s.summary = 'All the single ladies!'
|
11
|
+
s.description = 'All the single ladies!'
|
12
|
+
|
13
|
+
s.author = 'Denis Defreyne'
|
14
|
+
s.email = 'denis.defreyne@stoneship.org'
|
15
|
+
s.license = 'MIT'
|
16
|
+
|
17
|
+
s.required_ruby_version = '>= 1.9.3'
|
18
|
+
|
19
|
+
s.files = Dir['[A-Z]*'] +
|
20
|
+
Dir['{bin,lib,tasks,test}/**/*'] +
|
21
|
+
[ 'yonce.gemspec' ]
|
22
|
+
s.executables = [ 'yonce' ]
|
23
|
+
s.require_paths = [ 'lib' ]
|
24
|
+
end
|
metadata
ADDED
@@ -0,0 +1,51 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: yonce
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: '0.1'
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Denis Defreyne
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2013-06-18 00:00:00.000000000 Z
|
13
|
+
dependencies: []
|
14
|
+
description: All the single ladies!
|
15
|
+
email: denis.defreyne@stoneship.org
|
16
|
+
executables:
|
17
|
+
- yonce
|
18
|
+
extensions: []
|
19
|
+
extra_rdoc_files: []
|
20
|
+
files:
|
21
|
+
- README.md
|
22
|
+
- bin/yonce
|
23
|
+
- lib/yonce/version.rb
|
24
|
+
- lib/yonce.rb
|
25
|
+
- yonce.gemspec
|
26
|
+
homepage: http://example.com/
|
27
|
+
licenses:
|
28
|
+
- MIT
|
29
|
+
post_install_message:
|
30
|
+
rdoc_options: []
|
31
|
+
require_paths:
|
32
|
+
- lib
|
33
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
34
|
+
none: false
|
35
|
+
requirements:
|
36
|
+
- - ! '>='
|
37
|
+
- !ruby/object:Gem::Version
|
38
|
+
version: 1.9.3
|
39
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
40
|
+
none: false
|
41
|
+
requirements:
|
42
|
+
- - ! '>='
|
43
|
+
- !ruby/object:Gem::Version
|
44
|
+
version: '0'
|
45
|
+
requirements: []
|
46
|
+
rubyforge_project:
|
47
|
+
rubygems_version: 1.8.25
|
48
|
+
signing_key:
|
49
|
+
specification_version: 3
|
50
|
+
summary: All the single ladies!
|
51
|
+
test_files: []
|