helloalbum 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.
Files changed (5) hide show
  1. data/Manifest +3 -0
  2. data/Rakefile +13 -0
  3. data/helloalbum.gemspec +30 -0
  4. data/lib/hello_album.rb +6 -0
  5. metadata +69 -0
data/Manifest ADDED
@@ -0,0 +1,3 @@
1
+ Rakefile
2
+ lib/hello_album.rb
3
+ Manifest
data/Rakefile ADDED
@@ -0,0 +1,13 @@
1
+ require 'rubygems'
2
+ require 'rake'
3
+ require 'echoe'
4
+
5
+ Echoe.new('helloalbum', '0.0.1') do |p|
6
+ p.description = "A gem that illustrates how to build a gem"
7
+ p.url = "http://github.com/tombombadil/hello_world"
8
+ p.author = "Zaac Yang"
9
+ p.email = "zaac@gmail.com"
10
+ p.ignore_pattern = ["tmp/*", "script/*"]
11
+ p.development_dependencies = []
12
+ end
13
+
@@ -0,0 +1,30 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = %q{helloalbum}
5
+ s.version = "0.0.1"
6
+
7
+ s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
+ s.authors = ["Zaac Yang"]
9
+ s.date = %q{2010-04-30}
10
+ s.description = %q{A gem that illustrates how to build a gem}
11
+ s.email = %q{zaac@gmail.com}
12
+ s.extra_rdoc_files = ["lib/hello_album.rb"]
13
+ s.files = ["Rakefile", "lib/hello_album.rb", "Manifest", "helloalbum.gemspec"]
14
+ s.homepage = %q{http://github.com/tombombadil/hello_world}
15
+ s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Helloalbum"]
16
+ s.require_paths = ["lib"]
17
+ s.rubyforge_project = %q{helloalbum}
18
+ s.rubygems_version = %q{1.3.6}
19
+ s.summary = %q{A gem that illustrates how to build a gem}
20
+
21
+ if s.respond_to? :specification_version then
22
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
23
+ s.specification_version = 3
24
+
25
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
26
+ else
27
+ end
28
+ else
29
+ end
30
+ end
@@ -0,0 +1,6 @@
1
+ module HelloWorld
2
+ def self.say_hello
3
+ puts 'hello world'
4
+ end
5
+ end
6
+
metadata ADDED
@@ -0,0 +1,69 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: helloalbum
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 0
7
+ - 0
8
+ - 1
9
+ version: 0.0.1
10
+ platform: ruby
11
+ authors:
12
+ - Zaac Yang
13
+ autorequire:
14
+ bindir: bin
15
+ cert_chain: []
16
+
17
+ date: 2010-04-30 00:00:00 +08:00
18
+ default_executable:
19
+ dependencies: []
20
+
21
+ description: A gem that illustrates how to build a gem
22
+ email: zaac@gmail.com
23
+ executables: []
24
+
25
+ extensions: []
26
+
27
+ extra_rdoc_files:
28
+ - lib/hello_album.rb
29
+ files:
30
+ - Rakefile
31
+ - lib/hello_album.rb
32
+ - Manifest
33
+ - helloalbum.gemspec
34
+ has_rdoc: true
35
+ homepage: http://github.com/tombombadil/hello_world
36
+ licenses: []
37
+
38
+ post_install_message:
39
+ rdoc_options:
40
+ - --line-numbers
41
+ - --inline-source
42
+ - --title
43
+ - Helloalbum
44
+ require_paths:
45
+ - lib
46
+ required_ruby_version: !ruby/object:Gem::Requirement
47
+ requirements:
48
+ - - ">="
49
+ - !ruby/object:Gem::Version
50
+ segments:
51
+ - 0
52
+ version: "0"
53
+ required_rubygems_version: !ruby/object:Gem::Requirement
54
+ requirements:
55
+ - - ">="
56
+ - !ruby/object:Gem::Version
57
+ segments:
58
+ - 1
59
+ - 2
60
+ version: "1.2"
61
+ requirements: []
62
+
63
+ rubyforge_project: helloalbum
64
+ rubygems_version: 1.3.6
65
+ signing_key:
66
+ specification_version: 3
67
+ summary: A gem that illustrates how to build a gem
68
+ test_files: []
69
+