leenookx-tagcloud 0.0.1 → 0.0.2

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 (7) hide show
  1. data/LICENSE +1 -1
  2. data/Rakefile +1 -1
  3. data/VERSION +1 -0
  4. data/app.rb +12 -0
  5. data/lib/tagcloud.rb +1 -1
  6. data/tagcloud.gemspec +61 -0
  7. metadata +5 -2
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2009 lnookx
1
+ Copyright (c) 2009 leenookx
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/Rakefile CHANGED
@@ -9,7 +9,7 @@ begin
9
9
  gem.description = %Q{Provides an implementation a tag cloud}
10
10
  gem.email = "lnookx@googlemail.com"
11
11
  gem.homepage = "http://github.com/leenookx/tagcloud"
12
- gem.authors = ["lnookx"]
12
+ gem.authors = ["leenookx"]
13
13
  gem.add_development_dependency "thoughtbot-shoulda"
14
14
  gem.add_development_dependency "cucumber"
15
15
  # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.0.2
data/app.rb ADDED
@@ -0,0 +1,12 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "lib/tagcloud"
4
+
5
+ tc = TagCloud.new
6
+
7
+ tc.add(:tag => "test", :url => "http://127.0.0.1", :source => "calais")
8
+ tc.add(:tag => "test", :url => "http://127.0.0.1", :source => "calais")
9
+ tc.add(:tag => "test", :url => "http://127.0.0.1", :source => "calais")
10
+ tc.add(:tag => "test", :url => "http://127.0.0.1", :source => "calais")
11
+
12
+ puts tc.get_cloud
data/lib/tagcloud.rb CHANGED
@@ -1,2 +1,2 @@
1
- require "lib/tagcloud/tagcloud"
1
+ require "tagcloud/tagcloud"
2
2
 
data/tagcloud.gemspec ADDED
@@ -0,0 +1,61 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{tagcloud}
8
+ s.version = "0.0.2"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["leenookx"]
12
+ s.date = %q{2009-09-15}
13
+ s.description = %q{Provides an implementation a tag cloud}
14
+ s.email = %q{lnookx@googlemail.com}
15
+ s.extra_rdoc_files = [
16
+ "LICENSE",
17
+ "README.rdoc"
18
+ ]
19
+ s.files = [
20
+ ".document",
21
+ ".gitignore",
22
+ "LICENSE",
23
+ "README.rdoc",
24
+ "Rakefile",
25
+ "VERSION",
26
+ "app.rb",
27
+ "features/step_definitions/tagcloud_steps.rb",
28
+ "features/support/env.rb",
29
+ "features/tagcloud.feature",
30
+ "lib/tagcloud.rb",
31
+ "lib/tagcloud/tagcloud.rb",
32
+ "tagcloud.gemspec",
33
+ "test/tagcloud_test.rb",
34
+ "test/test_helper.rb"
35
+ ]
36
+ s.homepage = %q{http://github.com/leenookx/tagcloud}
37
+ s.rdoc_options = ["--charset=UTF-8"]
38
+ s.require_paths = ["lib"]
39
+ s.rubygems_version = %q{1.3.5}
40
+ s.summary = %q{TagCloud functionality}
41
+ s.test_files = [
42
+ "test/tagcloud_test.rb",
43
+ "test/test_helper.rb"
44
+ ]
45
+
46
+ if s.respond_to? :specification_version then
47
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
48
+ s.specification_version = 3
49
+
50
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
51
+ s.add_development_dependency(%q<thoughtbot-shoulda>, [">= 0"])
52
+ s.add_development_dependency(%q<cucumber>, [">= 0"])
53
+ else
54
+ s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
55
+ s.add_dependency(%q<cucumber>, [">= 0"])
56
+ end
57
+ else
58
+ s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
59
+ s.add_dependency(%q<cucumber>, [">= 0"])
60
+ end
61
+ end
metadata CHANGED
@@ -1,10 +1,10 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: leenookx-tagcloud
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
- - lnookx
7
+ - leenookx
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
@@ -47,11 +47,14 @@ files:
47
47
  - LICENSE
48
48
  - README.rdoc
49
49
  - Rakefile
50
+ - VERSION
51
+ - app.rb
50
52
  - features/step_definitions/tagcloud_steps.rb
51
53
  - features/support/env.rb
52
54
  - features/tagcloud.feature
53
55
  - lib/tagcloud.rb
54
56
  - lib/tagcloud/tagcloud.rb
57
+ - tagcloud.gemspec
55
58
  - test/tagcloud_test.rb
56
59
  - test/test_helper.rb
57
60
  has_rdoc: false