famous 0.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.
@@ -0,0 +1,25 @@
1
+ # -*- ruby -*-
2
+
3
+ require "autotest/restart"
4
+
5
+ # Autotest.add_hook :initialize do |at|
6
+ # at.testlib = "minitest/unit"
7
+ #
8
+ # at.extra_files << "../some/external/dependency.rb"
9
+ #
10
+ # at.libs << ":../some/external"
11
+ #
12
+ # at.add_exception "vendor"
13
+ #
14
+ # at.add_mapping(/dependency.rb/) do |f, _|
15
+ # at.files_matching(/test_.*rb$/)
16
+ # end
17
+ #
18
+ # %w(TestA TestB).each do |klass|
19
+ # at.extra_class_map[klass] = "test/test_misc.rb"
20
+ # end
21
+ # end
22
+
23
+ # Autotest.add_hook :run_command do |at|
24
+ # system "rake build"
25
+ # end
File without changes
@@ -0,0 +1,4 @@
1
+ === 0.0.1 / 2014-02-26
2
+
3
+ * 1 major enhancement
4
+ * Birthday!
@@ -0,0 +1,9 @@
1
+ .autotest
2
+ History.md
3
+ Manifest.txt
4
+ README.md
5
+ Rakefile
6
+ bin/famous
7
+ famous.gemspec
8
+ lib/famous.rb
9
+ test/test_famous.rb
@@ -0,0 +1,52 @@
1
+ # Famous
2
+
3
+ * https://github.com/awesome/famous
4
+ * https://rubygems.org/gems/famous
5
+ * https://rubyforge.org/projects/famous
6
+
7
+ ## DESCRIPTION:
8
+
9
+ Checks if famous yet...
10
+
11
+ ## FEATURES:
12
+
13
+ * Checks if famous yet...
14
+ * _more features forthcoming..._
15
+
16
+ ## REQUIREMENTS:
17
+
18
+ * Ruby >= 1.9.2
19
+
20
+ ## INSTALL:
21
+
22
+ $ gem install famous
23
+
24
+ ## USAGE:
25
+
26
+ Famous.yet?
27
+ #=> "not famous yet..."
28
+
29
+ ## LICENSE:
30
+
31
+ (The MIT License)
32
+
33
+ Copyright (c) 2014 SoAwesomeMan
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,22 @@
1
+ # -*- ruby -*-
2
+
3
+ require "rubygems"
4
+ require "hoe"
5
+
6
+ Hoe.plugin :yard
7
+ Hoe.plugin :clean
8
+ Hoe.plugin :gemspec
9
+ Hoe.plugin :rubyforge
10
+
11
+ Hoe.spec "famous" do
12
+ developer("SoAwesomeMan", "callme@1800AWESO.ME")
13
+
14
+ self.yard_title = 'famous (0.0.1)'
15
+ self.yard_markup = 'markdown'
16
+ self.yard_opts = []
17
+ clean_globs << '.yardoc'
18
+
19
+ license "MIT"
20
+ end
21
+
22
+ # vim: syntax=ruby
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ abort "not famous yet..."
@@ -0,0 +1,41 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = "famous"
5
+ s.version = "0.0.1.20140226135322"
6
+
7
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
+ s.authors = ["SoAwesomeMan"]
9
+ s.date = "2014-02-26"
10
+ s.description = "Checks if famous yet..."
11
+ s.email = ["callme@1800AWESO.ME"]
12
+ s.executables = ["famous"]
13
+ s.extra_rdoc_files = ["History.md", "Manifest.txt", "README.md", "History.md"]
14
+ s.files = [".autotest", "History.md", "Manifest.txt", "README.md", "Rakefile", "bin/famous", "lib/famous.rb", "test/test_famous.rb", ".gemtest"]
15
+ s.homepage = "https://github.com/awesome/famous"
16
+ s.licenses = ["MIT"]
17
+ s.rdoc_options = ["--title", "famous (0.0.1)", "--markup", "markdown", "--quiet"]
18
+ s.require_paths = ["lib"]
19
+ s.rubyforge_project = "famous"
20
+ s.rubygems_version = "1.8.23"
21
+ s.summary = "Checks if famous yet..."
22
+ s.test_files = ["test/test_famous.rb"]
23
+
24
+ if s.respond_to? :specification_version then
25
+ s.specification_version = 3
26
+
27
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
28
+ s.add_development_dependency(%q<hoe-yard>, [">= 0.1.2"])
29
+ s.add_development_dependency(%q<rubyforge>, ["~> 2.0.4"])
30
+ s.add_development_dependency(%q<hoe>, ["~> 3.9"])
31
+ else
32
+ s.add_dependency(%q<hoe-yard>, [">= 0.1.2"])
33
+ s.add_dependency(%q<rubyforge>, ["~> 2.0.4"])
34
+ s.add_dependency(%q<hoe>, ["~> 3.9"])
35
+ end
36
+ else
37
+ s.add_dependency(%q<hoe-yard>, [">= 0.1.2"])
38
+ s.add_dependency(%q<rubyforge>, ["~> 2.0.4"])
39
+ s.add_dependency(%q<hoe>, ["~> 3.9"])
40
+ end
41
+ end
@@ -0,0 +1,12 @@
1
+ module Famous
2
+ VERSION = "0.0.1"
3
+ extend self
4
+
5
+ # Checks if famous threshold has been reached
6
+ #
7
+ # @todo replace hardcoded return
8
+ # @return [String]
9
+ def yet?
10
+ "not famous yet..."
11
+ end
12
+ end
@@ -0,0 +1,8 @@
1
+ require "minitest/autorun"
2
+ require "famous"
3
+
4
+ class TestFamous < MiniTest::Unit::TestCase
5
+ def test_famous_yet
6
+ assert_equal "not famous yet...", Famous.yet?
7
+ end
8
+ end
metadata ADDED
@@ -0,0 +1,114 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: famous
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - SoAwesomeMan
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2014-02-26 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: hoe-yard
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: 0.1.2
22
+ type: :development
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ! '>='
28
+ - !ruby/object:Gem::Version
29
+ version: 0.1.2
30
+ - !ruby/object:Gem::Dependency
31
+ name: rubyforge
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ~>
36
+ - !ruby/object:Gem::Version
37
+ version: 2.0.4
38
+ type: :development
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ~>
44
+ - !ruby/object:Gem::Version
45
+ version: 2.0.4
46
+ - !ruby/object:Gem::Dependency
47
+ name: hoe
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ~>
52
+ - !ruby/object:Gem::Version
53
+ version: '3.9'
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ~>
60
+ - !ruby/object:Gem::Version
61
+ version: '3.9'
62
+ description: Checks if famous yet...
63
+ email:
64
+ - callme@1800AWESO.ME
65
+ executables:
66
+ - famous
67
+ extensions: []
68
+ extra_rdoc_files:
69
+ - History.md
70
+ - Manifest.txt
71
+ - README.md
72
+ files:
73
+ - .autotest
74
+ - History.md
75
+ - Manifest.txt
76
+ - README.md
77
+ - Rakefile
78
+ - bin/famous
79
+ - famous.gemspec
80
+ - lib/famous.rb
81
+ - test/test_famous.rb
82
+ - .gemtest
83
+ homepage: https://github.com/awesome/famous
84
+ licenses:
85
+ - MIT
86
+ post_install_message:
87
+ rdoc_options:
88
+ - --title
89
+ - famous (0.0.1)
90
+ - --markup
91
+ - markdown
92
+ - --quiet
93
+ require_paths:
94
+ - lib
95
+ required_ruby_version: !ruby/object:Gem::Requirement
96
+ none: false
97
+ requirements:
98
+ - - ! '>='
99
+ - !ruby/object:Gem::Version
100
+ version: '0'
101
+ required_rubygems_version: !ruby/object:Gem::Requirement
102
+ none: false
103
+ requirements:
104
+ - - ! '>='
105
+ - !ruby/object:Gem::Version
106
+ version: '0'
107
+ requirements: []
108
+ rubyforge_project: famous
109
+ rubygems_version: 1.8.23
110
+ signing_key:
111
+ specification_version: 3
112
+ summary: Checks if famous yet...
113
+ test_files:
114
+ - test/test_famous.rb