niessner-not_method 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.
data/Rakefile ADDED
@@ -0,0 +1,22 @@
1
+ require 'rubygems'
2
+ require 'rake'
3
+ require 'rake/gempackagetask'
4
+ require 'date'
5
+
6
+ spec = Gem::Specification.new do |s|
7
+ s.name = "not_method"
8
+ s.version = "0.0.2"
9
+ s.summary = "Jay Fields' not method"
10
+ s.files = FileList['[A-Z]*', 'lib/**/*.rb']
11
+ s.require_path = 'lib'
12
+ s.author = "Michael Niessner"
13
+ s.email = "michael@niessner.us"
14
+ s.platform = Gem::Platform::RUBY
15
+ end
16
+
17
+ desc "Generate a gemspec file"
18
+ task :gemspec do
19
+ File.open("#{spec.name}.gemspec", 'w') do |f|
20
+ f.write spec.to_ruby
21
+ end
22
+ end
@@ -0,0 +1 @@
1
+ require 'not_method'
File without changes
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: niessner-not_method
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
  - Michael Niessner
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-10-28 00:00:00 -07:00
12
+ date: 2008-11-10 00:00:00 -08:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
@@ -22,11 +22,9 @@ extensions: []
22
22
  extra_rdoc_files: []
23
23
 
24
24
  files:
25
- - Manifest.txt
26
- - init.rb
27
- - not_method.gemspec
28
- - lib/jay_fields_not_method.rb
29
- - rails/init.rb
25
+ - Rakefile
26
+ - lib/niessner-not_method.rb
27
+ - lib/not_method.rb
30
28
  has_rdoc: false
31
29
  homepage:
32
30
  post_install_message:
@@ -52,6 +50,6 @@ rubyforge_project:
52
50
  rubygems_version: 1.2.0
53
51
  signing_key:
54
52
  specification_version: 2
55
- summary: Jay Fields not method.
53
+ summary: Jay Fields' not method
56
54
  test_files: []
57
55
 
data/Manifest.txt DELETED
@@ -1,5 +0,0 @@
1
- Manifest.txt
2
- init.rb
3
- lib/jay_fields_not_method.rb
4
- not_method.gemspec
5
- rails/init.rb
data/init.rb DELETED
@@ -1 +0,0 @@
1
- require 'jay_fields_not_method'
data/not_method.gemspec DELETED
@@ -1,13 +0,0 @@
1
- Gem::Specification.new do |s|
2
- s.name = "not_method"
3
- s.version = "0.0.1"
4
- s.date = "2008-10-28"
5
- s.author = "Michael Niessner"
6
- s.email = "michael@niessner.us"
7
- s.summary = "Jay Fields not method."
8
- s.files = ["Manifest.txt",
9
- "init.rb",
10
- "not_method.gemspec",
11
- "lib/jay_fields_not_method.rb",
12
- "rails/init.rb"]
13
- end
data/rails/init.rb DELETED
@@ -1 +0,0 @@
1
- require File.join(File.dirname(__FILE__),'../init.rb')