yonce 0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,10 @@
1
+ Yonce
2
+ =====
3
+
4
+ THIS IS ALPHA QUALITLY SOFTWARE. EXPECT BROKEN FEATURES AND TYPOS.
5
+
6
+ Usage
7
+ -----
8
+
9
+ alias be=bundle exec
10
+ be yonce
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # encoding: utf-8
3
+
4
+ $LOAD_PATH.unshift(File.expand_path(File.dirname(__FILE__) + '/../lib'))
5
+ require 'yonce'
6
+ Yonce.run
@@ -0,0 +1,11 @@
1
+ # encoding: utf-8
2
+
3
+ module Yonce
4
+
5
+ def self.run
6
+ notes = %w( ♩ ♪ ♫ ♬ )
7
+ lyrics = [ 'All the single ladies' ]
8
+ puts notes.sample + ' ' + lyrics.sample + ' ' + notes.sample
9
+ end
10
+
11
+ end
@@ -0,0 +1,5 @@
1
+ module Yonce
2
+
3
+ VERSION = '0.1'
4
+
5
+ end
@@ -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: []