gem_hadar 0.0.6 → 0.0.7

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.
data/.gitignore CHANGED
@@ -1,3 +1,3 @@
1
- pkg
2
- Gemfile.lock
3
1
  .*.sw[pon]
2
+ Gemfile.lock
3
+ pkg
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.6
1
+ 0.0.7
data/gem_hadar.gemspec CHANGED
@@ -2,19 +2,19 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{gem_hadar}
5
- s.version = "0.0.6"
5
+ s.version = "0.0.7"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
- s.authors = ["Florian Frank"]
9
- s.date = %q{2011-07-18}
8
+ s.authors = [%q{Florian Frank}]
9
+ s.date = %q{2011-07-19}
10
10
  s.description = %q{This library contains some useful functionality to support the development of Ruby Gems}
11
11
  s.email = %q{flori@ping.de}
12
- s.extra_rdoc_files = ["README.rdoc", "lib/gem_hadar/version.rb", "lib/gem_hadar.rb"]
13
- s.files = [".gitignore", "Gemfile", "LICENSE", "README.rdoc", "Rakefile", "VERSION", "gem_hadar.gemspec", "lib/gem_hadar.rb", "lib/gem_hadar/version.rb"]
12
+ s.extra_rdoc_files = [%q{README.rdoc}, %q{lib/gem_hadar.rb}, %q{lib/gem_hadar/version.rb}]
13
+ s.files = [%q{.gitignore}, %q{Gemfile}, %q{LICENSE}, %q{README.rdoc}, %q{Rakefile}, %q{VERSION}, %q{gem_hadar.gemspec}, %q{lib/gem_hadar.rb}, %q{lib/gem_hadar/version.rb}]
14
14
  s.homepage = %q{http://github.com/flori/gem_hadar}
15
- s.rdoc_options = ["--title", "GemHadar - Library for the development of Ruby Gems", "--main", "README.rdoc"]
16
- s.require_paths = ["lib"]
17
- s.rubygems_version = %q{1.7.2}
15
+ s.rdoc_options = [%q{--title}, %q{GemHadar - Library for the development of Ruby Gems}, %q{--main}, %q{README.rdoc}]
16
+ s.require_paths = [%q{lib}]
17
+ s.rubygems_version = %q{1.8.5}
18
18
  s.summary = %q{Library for the development of Ruby Gems}
19
19
 
20
20
  if s.respond_to? :specification_version then
@@ -1,6 +1,6 @@
1
1
  class GemHadar
2
2
  # GemHadar version
3
- VERSION = '0.0.6'
3
+ VERSION = '0.0.7'
4
4
  VERSION_ARRAY = VERSION.split(/\./).map { |x| x.to_i } # :nodoc:
5
5
  VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc:
6
6
  VERSION_MINOR = VERSION_ARRAY[1] # :nodoc:
data/lib/gem_hadar.rb CHANGED
@@ -200,7 +200,7 @@ class GemHadar
200
200
  s.test_files = test_files
201
201
  extensions.full? { |e| s.extensions = e }
202
202
  bindir.full? { |b| s.bindir = b }
203
- executables.full?(:to_a) { |e| s.executables = e }
203
+ executables.full?(:to_a) { |e| s.executables << e }
204
204
 
205
205
  s.add_development_dependency('gem_hadar', "~>#{VERSION}")
206
206
  for d in @development_dependencies
@@ -320,7 +320,7 @@ EOT
320
320
 
321
321
  def write_ignore_file
322
322
  write('.gitignore') do |output|
323
- output.puts(*ignore)
323
+ output.puts(*ignore.sort)
324
324
  end
325
325
  end
326
326
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gem_hadar
3
3
  version: !ruby/object:Gem::Version
4
- hash: 19
4
+ hash: 17
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 6
10
- version: 0.0.6
9
+ - 7
10
+ version: 0.0.7
11
11
  platform: ruby
12
12
  authors:
13
13
  - Florian Frank
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-07-18 00:00:00 Z
18
+ date: 2011-07-19 00:00:00 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: gem_hadar
@@ -105,8 +105,8 @@ extensions: []
105
105
 
106
106
  extra_rdoc_files:
107
107
  - README.rdoc
108
- - lib/gem_hadar/version.rb
109
108
  - lib/gem_hadar.rb
109
+ - lib/gem_hadar/version.rb
110
110
  files:
111
111
  - .gitignore
112
112
  - Gemfile
@@ -149,7 +149,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
149
149
  requirements: []
150
150
 
151
151
  rubyforge_project:
152
- rubygems_version: 1.7.2
152
+ rubygems_version: 1.8.5
153
153
  signing_key:
154
154
  specification_version: 3
155
155
  summary: Library for the development of Ruby Gems