rsim-foo_demo 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 (4) hide show
  1. data/Manifest.txt +1 -0
  2. data/foo_demo.gemspec +34 -0
  3. data/lib/foo_demo.rb +1 -1
  4. metadata +2 -1
data/Manifest.txt CHANGED
@@ -3,6 +3,7 @@ Manifest.txt
3
3
  PostInstall.txt
4
4
  README.rdoc
5
5
  Rakefile
6
+ foo_demo.gemspec
6
7
  lib/foo_demo.rb
7
8
  lib/foo_demo/bar.rb
8
9
  spec/foo_demo_spec.rb
data/foo_demo.gemspec ADDED
@@ -0,0 +1,34 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = %q{foo_demo}
5
+ s.version = "0.0.2"
6
+
7
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
+ s.authors = ["Raimonds Simanovskis"]
9
+ s.date = %q{2009-07-30}
10
+ s.description = %q{FIX (describe your package)}
11
+ s.email = ["raimonds.simanovskis@gmail.com"]
12
+ s.extra_rdoc_files = ["History.txt", "Manifest.txt", "PostInstall.txt"]
13
+ s.files = ["History.txt", "Manifest.txt", "PostInstall.txt", "README.rdoc", "Rakefile", "foo_demo.gemspec", "lib/foo_demo.rb", "lib/foo_demo/bar.rb", "spec/foo_demo_spec.rb", "spec/spec.opts", "spec/spec_helper.rb"]
14
+ s.homepage = %q{http://github.com/#{github_username}/#{project_name}}
15
+ s.post_install_message = %q{PostInstall.txt}
16
+ s.rdoc_options = ["--main", "README.rdoc"]
17
+ s.require_paths = ["lib"]
18
+ s.rubyforge_project = %q{foo_demo}
19
+ s.rubygems_version = %q{1.3.3}
20
+ s.summary = %q{FIX (describe your package)}
21
+
22
+ if s.respond_to? :specification_version then
23
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
24
+ s.specification_version = 3
25
+
26
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
27
+ s.add_development_dependency(%q<hoe>, [">= 2.3.2"])
28
+ else
29
+ s.add_dependency(%q<hoe>, [">= 2.3.2"])
30
+ end
31
+ else
32
+ s.add_dependency(%q<hoe>, [">= 2.3.2"])
33
+ end
34
+ end
data/lib/foo_demo.rb CHANGED
@@ -4,5 +4,5 @@ $:.unshift(File.dirname(__FILE__)) unless
4
4
  require File.dirname(__FILE__)+"/foo_demo/bar"
5
5
 
6
6
  module FooDemo
7
- VERSION = '0.0.1'
7
+ VERSION = '0.0.2'
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rsim-foo_demo
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
7
  - Raimonds Simanovskis
@@ -39,6 +39,7 @@ files:
39
39
  - PostInstall.txt
40
40
  - README.rdoc
41
41
  - Rakefile
42
+ - foo_demo.gemspec
42
43
  - lib/foo_demo.rb
43
44
  - lib/foo_demo/bar.rb
44
45
  - spec/foo_demo_spec.rb