laserlemon-has_token 0.3.0

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/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2009 Steve Richert
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/Manifest ADDED
@@ -0,0 +1,13 @@
1
+ generators/has_token_migration/has_token_migration_generator.rb
2
+ generators/has_token_migration/templates/migration.rb
3
+ init.rb
4
+ lib/has_token.rb
5
+ lib/token.rb
6
+ MIT-LICENSE
7
+ Rakefile
8
+ README.rdoc
9
+ tasks/has_token_tasks.rake
10
+ test/has_token_test.rb
11
+ test/test_helper.rb
12
+ VERSION.yml
13
+ Manifest
data/README.rdoc ADDED
@@ -0,0 +1,14 @@
1
+ = has_token
2
+
3
+ == Installation
4
+
5
+ script/plugin install git://github.com/FooBarWidget/default_value_for.git
6
+ script/plugin install git://github.com/laserlemon/has_token.git
7
+
8
+ == Example
9
+
10
+ Coming soon...
11
+
12
+ == Tips
13
+
14
+ Coming soon...
data/Rakefile ADDED
@@ -0,0 +1,14 @@
1
+ require 'rubygems'
2
+ require 'rake'
3
+ require 'echoe'
4
+
5
+ Echoe.new('has_token', '0.3.0') do |g|
6
+ g.description = %(Generate unique tokens on your ActiveRecord models)
7
+ g.url = 'http://github.com/laserlemon/has_token'
8
+ g.author = 'Steve Richert'
9
+ g.email = 'steve@laserlemon.com'
10
+ g.ignore_pattern = %w(tmp/* script/*)
11
+ g.development_dependencies = []
12
+ end
13
+
14
+ Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].sort.each{|t| load t }
data/VERSION.yml ADDED
@@ -0,0 +1,4 @@
1
+ ---
2
+ :major: 0
3
+ :minor: 3
4
+ :patch: 0
@@ -0,0 +1,11 @@
1
+ class HasTokenMigrationGenerator < Rails::Generator::Base
2
+ def manifest
3
+ record do |m|
4
+ m.migration_template 'migration.rb', 'db/migrate'
5
+ end
6
+ end
7
+
8
+ def file_name
9
+ 'create_tokens'
10
+ end
11
+ end
@@ -0,0 +1,17 @@
1
+ class CreateTokens < ActiveRecord::Migration
2
+ def self.up
3
+ create_table :tokens do |t|
4
+ t.belongs_to :parent, :polymorphic => true
5
+ t.string :value
6
+ end
7
+
8
+ change_table :tokens do |t|
9
+ t.index [:parent_id, :parent_type], :unique => true
10
+ t.index :value, :unique => true
11
+ end
12
+ end
13
+
14
+ def self.down
15
+ drop_table :tokens
16
+ end
17
+ end
data/has_token.gemspec ADDED
@@ -0,0 +1,31 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = %q{has_token}
5
+ s.version = "0.3.0"
6
+
7
+ s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
+ s.authors = ["Steve Richert"]
9
+ s.date = %q{2009-06-30}
10
+ s.description = %q{Generate unique tokens on your ActiveRecord models}
11
+ s.email = %q{steve@laserlemon.com}
12
+ s.extra_rdoc_files = ["lib/has_token.rb", "lib/token.rb", "README.rdoc", "tasks/has_token_tasks.rake"]
13
+ s.files = ["generators/has_token_migration/has_token_migration_generator.rb", "generators/has_token_migration/templates/migration.rb", "init.rb", "lib/has_token.rb", "lib/token.rb", "MIT-LICENSE", "Rakefile", "README.rdoc", "tasks/has_token_tasks.rake", "test/has_token_test.rb", "test/test_helper.rb", "VERSION.yml", "Manifest", "has_token.gemspec"]
14
+ s.homepage = %q{http://github.com/laserlemon/has_token}
15
+ s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Has_token", "--main", "README.rdoc"]
16
+ s.require_paths = ["lib"]
17
+ s.rubyforge_project = %q{has_token}
18
+ s.rubygems_version = %q{1.3.4}
19
+ s.summary = %q{Generate unique tokens on your ActiveRecord models}
20
+ s.test_files = ["test/has_token_test.rb", "test/test_helper.rb"]
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
+ else
28
+ end
29
+ else
30
+ end
31
+ end
data/init.rb ADDED
@@ -0,0 +1 @@
1
+ require 'has_token'
data/lib/has_token.rb ADDED
@@ -0,0 +1,56 @@
1
+ require 'token'
2
+
3
+ module LaserLemon
4
+ module HasToken
5
+ def self.included(base)
6
+ base.extend ClassMethods
7
+ end
8
+
9
+ module ClassMethods
10
+ def has_token(*args)
11
+ options = args.extract_options!.symbolize_keys
12
+ options[:column] = (args.first || :token)
13
+ options.reverse_merge!(
14
+ :length => 6,
15
+ :characters => [('a'..'z'), ('A'..'Z'), ('0'..'9')].map(&:to_a).sum,
16
+ :constructor => proc(&:has_token_value),
17
+ :to_param => false,
18
+ :readonly => true
19
+ )
20
+
21
+ cattr_accessor :has_token_options
22
+ return(false) if self.has_token_options.present?
23
+ self.has_token_options = options
24
+
25
+ attr_readonly(options[:column]) if options[:readonly]
26
+ define_method(:to_param){ read_attribute(column) } if options[:to_param]
27
+
28
+ has_one :global_token, :class_name => 'Token', :as => :parent, :autosave => true
29
+
30
+ include InstanceMethods
31
+ before_create :set_token
32
+ end
33
+ end
34
+
35
+ module InstanceMethods
36
+ def has_token_options
37
+ self.class.has_token_options
38
+ end
39
+
40
+ def has_token_value
41
+ Array.new(has_token_options[:length]){ has_token_options[:characters].rand }.join
42
+ end
43
+
44
+ def set_token
45
+ begin
46
+ token_value = has_token_options[:constructor].call(self)
47
+ end while Token.exists?(:value => token_value)
48
+
49
+ build_global_token(:value => token_value)
50
+ write_attribute(has_token_options[:column], token_value)
51
+ end
52
+ end
53
+ end
54
+ end
55
+
56
+ ActiveRecord::Base.send(:include, LaserLemon::HasToken)
data/lib/token.rb ADDED
@@ -0,0 +1,9 @@
1
+ class Token < ActiveRecord::Base
2
+ belongs_to :parent, :polymorphic => true
3
+
4
+ named_scope :for, lambda{|k| {:conditions => {:parent_type => k.to_s.classify}} }
5
+
6
+ def self.get(value)
7
+ find_by_value(value).try(:parent)
8
+ end
9
+ end
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :has_token do
3
+ # # Task goes here
4
+ # end
@@ -0,0 +1,8 @@
1
+ require 'test_helper'
2
+
3
+ class HasTokenTest < ActiveSupport::TestCase
4
+ # Replace this with your real tests.
5
+ test "the truth" do
6
+ assert true
7
+ end
8
+ end
@@ -0,0 +1,3 @@
1
+ require 'rubygems'
2
+ require 'active_support'
3
+ require 'active_support/test_case'
metadata ADDED
@@ -0,0 +1,75 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: laserlemon-has_token
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.3.0
5
+ platform: ruby
6
+ authors:
7
+ - Steve Richert
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-06-30 00:00:00 -07:00
13
+ default_executable:
14
+ dependencies: []
15
+
16
+ description: Generate unique tokens on your ActiveRecord models
17
+ email: steve@laserlemon.com
18
+ executables: []
19
+
20
+ extensions: []
21
+
22
+ extra_rdoc_files:
23
+ - lib/has_token.rb
24
+ - lib/token.rb
25
+ - README.rdoc
26
+ - tasks/has_token_tasks.rake
27
+ files:
28
+ - generators/has_token_migration/has_token_migration_generator.rb
29
+ - generators/has_token_migration/templates/migration.rb
30
+ - init.rb
31
+ - lib/has_token.rb
32
+ - lib/token.rb
33
+ - MIT-LICENSE
34
+ - Rakefile
35
+ - README.rdoc
36
+ - tasks/has_token_tasks.rake
37
+ - test/has_token_test.rb
38
+ - test/test_helper.rb
39
+ - VERSION.yml
40
+ - Manifest
41
+ - has_token.gemspec
42
+ has_rdoc: false
43
+ homepage: http://github.com/laserlemon/has_token
44
+ post_install_message:
45
+ rdoc_options:
46
+ - --line-numbers
47
+ - --inline-source
48
+ - --title
49
+ - Has_token
50
+ - --main
51
+ - README.rdoc
52
+ require_paths:
53
+ - lib
54
+ required_ruby_version: !ruby/object:Gem::Requirement
55
+ requirements:
56
+ - - ">="
57
+ - !ruby/object:Gem::Version
58
+ version: "0"
59
+ version:
60
+ required_rubygems_version: !ruby/object:Gem::Requirement
61
+ requirements:
62
+ - - ">="
63
+ - !ruby/object:Gem::Version
64
+ version: "1.2"
65
+ version:
66
+ requirements: []
67
+
68
+ rubyforge_project: has_token
69
+ rubygems_version: 1.2.0
70
+ signing_key:
71
+ specification_version: 3
72
+ summary: Generate unique tokens on your ActiveRecord models
73
+ test_files:
74
+ - test/has_token_test.rb
75
+ - test/test_helper.rb