coded_attribute 0.0.2 → 0.0.3

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/Manifest CHANGED
@@ -5,7 +5,7 @@ Rakefile
5
5
  coded_attribute.gemspec
6
6
  init.rb
7
7
  install.rb
8
- lib/coded_attributes.rb
8
+ lib/coded_attribute.rb
9
9
  rdoc/CodedAttributes.html
10
10
  rdoc/README.html
11
11
  rdoc/created.rid
data/Rakefile CHANGED
@@ -7,7 +7,7 @@ require 'rake/rdoctask'
7
7
  desc 'Default: run unit tests.'
8
8
  task :default => :test
9
9
 
10
- Echoe.new('coded_attribute', '0.0.2') do |p|
10
+ Echoe.new('coded_attribute', '0.0.3') do |p|
11
11
  p.description = "ActiveRecord plugin for storing coded variables"
12
12
  p.url = "http://github.com/windigo77/coded_attribute"
13
13
  p.author = "Jaden Carver"
@@ -2,15 +2,15 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{coded_attribute}
5
- s.version = "0.0.2"
5
+ s.version = "0.0.3"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Jaden Carver"]
9
9
  s.date = %q{2010-11-06}
10
10
  s.description = %q{ActiveRecord plugin for storing coded variables}
11
11
  s.email = %q{jaden.carver@gmail.com}
12
- s.extra_rdoc_files = ["README", "lib/coded_attributes.rb"]
13
- s.files = ["MIT-LICENSE", "Manifest", "README", "Rakefile", "coded_attribute.gemspec", "init.rb", "install.rb", "lib/coded_attributes.rb", "rdoc/CodedAttributes.html", "rdoc/README.html", "rdoc/created.rid", "rdoc/images/brick.png", "rdoc/images/brick_link.png", "rdoc/images/bug.png", "rdoc/images/bullet_black.png", "rdoc/images/bullet_toggle_minus.png", "rdoc/images/bullet_toggle_plus.png", "rdoc/images/date.png", "rdoc/images/find.png", "rdoc/images/loadingAnimation.gif", "rdoc/images/macFFBgHack.png", "rdoc/images/package.png", "rdoc/images/page_green.png", "rdoc/images/page_white_text.png", "rdoc/images/page_white_width.png", "rdoc/images/plugin.png", "rdoc/images/ruby.png", "rdoc/images/tag_green.png", "rdoc/images/wrench.png", "rdoc/images/wrench_orange.png", "rdoc/images/zoom.png", "rdoc/index.html", "rdoc/js/darkfish.js", "rdoc/js/jquery.js", "rdoc/js/quicksearch.js", "rdoc/js/thickbox-compressed.js", "rdoc/lib/coded_attributes_rb.html", "rdoc/rdoc.css", "test/coded_attributes_test.rb", "test/test_helper.rb", "uninstall.rb"]
12
+ s.extra_rdoc_files = ["README", "lib/coded_attribute.rb"]
13
+ s.files = ["MIT-LICENSE", "Manifest", "README", "Rakefile", "coded_attribute.gemspec", "init.rb", "install.rb", "lib/coded_attribute.rb", "rdoc/CodedAttributes.html", "rdoc/README.html", "rdoc/created.rid", "rdoc/images/brick.png", "rdoc/images/brick_link.png", "rdoc/images/bug.png", "rdoc/images/bullet_black.png", "rdoc/images/bullet_toggle_minus.png", "rdoc/images/bullet_toggle_plus.png", "rdoc/images/date.png", "rdoc/images/find.png", "rdoc/images/loadingAnimation.gif", "rdoc/images/macFFBgHack.png", "rdoc/images/package.png", "rdoc/images/page_green.png", "rdoc/images/page_white_text.png", "rdoc/images/page_white_width.png", "rdoc/images/plugin.png", "rdoc/images/ruby.png", "rdoc/images/tag_green.png", "rdoc/images/wrench.png", "rdoc/images/wrench_orange.png", "rdoc/images/zoom.png", "rdoc/index.html", "rdoc/js/darkfish.js", "rdoc/js/jquery.js", "rdoc/js/quicksearch.js", "rdoc/js/thickbox-compressed.js", "rdoc/lib/coded_attributes_rb.html", "rdoc/rdoc.css", "test/coded_attributes_test.rb", "test/test_helper.rb", "uninstall.rb"]
14
14
  s.homepage = %q{http://github.com/windigo77/coded_attribute}
15
15
  s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Coded_attribute", "--main", "README"]
16
16
  s.require_paths = ["lib"]
data/init.rb CHANGED
@@ -1,5 +1,5 @@
1
- require 'coded_attributes'
1
+ require 'coded_attribute'
2
2
 
3
3
  class ActiveRecord::Base
4
- extend CodedAttributes
4
+ extend CodedAttribute
5
5
  end
@@ -1,6 +1,6 @@
1
1
  # CodedAttributes
2
2
 
3
- module CodedAttributes
3
+ module CodedAttribute
4
4
  VERSION = 0.1
5
5
 
6
6
  def coded_attribute(method, *attribute_or_codes)
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 2
9
- version: 0.0.2
8
+ - 3
9
+ version: 0.0.3
10
10
  platform: ruby
11
11
  authors:
12
12
  - Jaden Carver
@@ -26,7 +26,7 @@ extensions: []
26
26
 
27
27
  extra_rdoc_files:
28
28
  - README
29
- - lib/coded_attributes.rb
29
+ - lib/coded_attribute.rb
30
30
  files:
31
31
  - MIT-LICENSE
32
32
  - Manifest
@@ -35,7 +35,7 @@ files:
35
35
  - coded_attribute.gemspec
36
36
  - init.rb
37
37
  - install.rb
38
- - lib/coded_attributes.rb
38
+ - lib/coded_attribute.rb
39
39
  - rdoc/CodedAttributes.html
40
40
  - rdoc/README.html
41
41
  - rdoc/created.rid