fast_attributes 0.0.1

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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 4c7f1055c9b3373f670d0a951802c291da7e64d3
4
+ data.tar.gz: c07c8f114c8dedaa380ff9a17901fa1f6b928f87
5
+ SHA512:
6
+ metadata.gz: 1490d8927c991b691150524b0febe8abb69f554bc113d4b19c17318b180a37c724b07ab98be843c0aee452462449b69cfac4852b76eb4353c881b354f4beb2c5
7
+ data.tar.gz: 6d27f9bce17691ecd4bfe988598876a27632abe9b24f52b52d2f5d585195e515a1fc572c3dcde75390379cd0a0fb5ea75194f5559977c07f0a56b649a0166491
data/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/CHANGELOG.md ADDED
@@ -0,0 +1,2 @@
1
+ **0.0.1 (June 20, 2014)**
2
+ * Initial commit
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in fast_attributes.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Kostyantyn
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # FastAttributes
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'fast_attributes'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install fast_attributes
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it ( http://github.com/<my-github-username>/fast_attributes/fork )
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'fast_attributes/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'fast_attributes'
8
+ spec.version = FastAttributes::VERSION
9
+ spec.authors = ['Kostiantyn Stepaniuk']
10
+ spec.email = ['ks@applift.com']
11
+ spec.summary = 'Fast attributes with data types'
12
+ spec.description = 'Fast attributes with data types'
13
+ spec.homepage = 'https://github.com/applift/fast_attributes'
14
+ spec.license = 'MIT'
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency 'bundler', '~> 1.5'
22
+ spec.add_development_dependency 'rake'
23
+ end
@@ -0,0 +1,74 @@
1
+ require 'fast_attributes/version'
2
+
3
+ module FastAttributes
4
+ class << self
5
+ def type_casting
6
+ @type_casting ||= {
7
+ 'String' => 'String(%s)',
8
+ 'Integer' => 'Integer(%s)',
9
+ 'Date' => 'Date.parse(%s)',
10
+ 'Time' => 'Time.parse(%s)',
11
+ 'DateTime' => 'DateTime.parse(%s)',
12
+ 'Array' => 'Array(%s)'
13
+ }
14
+ end
15
+
16
+ def default_type_casting
17
+ '%s'
18
+ end
19
+
20
+ def get_type_casting(klass)
21
+ @type_casting.fetch(type_from_class(klass)) do
22
+ default_type_casting
23
+ end
24
+ end
25
+
26
+ def add_type_casting(klass, casting)
27
+ type_casting[type_from_class(klass)] = casting
28
+ end
29
+
30
+ def remove_type_casting(klass)
31
+ type_casting.delete(type_from_class(klass))
32
+ end
33
+
34
+ def type_exists?(klass)
35
+ type_casting.has_key?(type_from_class(klass))
36
+ end
37
+
38
+ def type_from_class(klass)
39
+ klass.name
40
+ end
41
+ end
42
+
43
+ def attribute(*attributes, klass)
44
+ @fast_attributes ||= []
45
+ attributes.each do |attribute|
46
+ @fast_attributes << attribute
47
+
48
+ type_matching = FastAttributes.type_exists?(klass) ? "when #{FastAttributes.type_from_class(klass)} then value" : nil
49
+ type_casting = FastAttributes.get_type_casting(klass) % 'value'
50
+ all_attributes = @fast_attributes.map do |attr|
51
+ "'#{attr}'=>@#{attr}"
52
+ end
53
+
54
+ class_eval <<-EOS, __FILE__, __LINE__ + 1
55
+ def #{attribute} # def name
56
+ @#{attribute} # @name
57
+ end # end
58
+
59
+ def #{attribute}=(value) # def name=(value)
60
+ @#{attribute} = case value # @name = case value
61
+ when nil then nil # when nil then nil
62
+ #{type_matching} # when String then value
63
+ else # else
64
+ #{type_casting} # String(value)
65
+ end # end
66
+ end # end
67
+
68
+ def attributes # def attributes
69
+ {#{all_attributes.join(',')}} # {'name'=>@name}
70
+ end # end
71
+ EOS
72
+ end
73
+ end
74
+ end
@@ -0,0 +1,3 @@
1
+ module FastAttributes
2
+ VERSION = '0.0.1'
3
+ end
metadata ADDED
@@ -0,0 +1,81 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: fast_attributes
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Kostiantyn Stepaniuk
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-06-20 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '1.5'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.5'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: Fast attributes with data types
42
+ email:
43
+ - ks@applift.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - .gitignore
49
+ - CHANGELOG.md
50
+ - Gemfile
51
+ - LICENSE.txt
52
+ - README.md
53
+ - Rakefile
54
+ - fast_attributes.gemspec
55
+ - lib/fast_attributes.rb
56
+ - lib/fast_attributes/version.rb
57
+ homepage: https://github.com/applift/fast_attributes
58
+ licenses:
59
+ - MIT
60
+ metadata: {}
61
+ post_install_message:
62
+ rdoc_options: []
63
+ require_paths:
64
+ - lib
65
+ required_ruby_version: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - '>='
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ required_rubygems_version: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - '>='
73
+ - !ruby/object:Gem::Version
74
+ version: '0'
75
+ requirements: []
76
+ rubyforge_project:
77
+ rubygems_version: 2.0.3
78
+ signing_key:
79
+ specification_version: 4
80
+ summary: Fast attributes with data types
81
+ test_files: []