all_access 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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 652b18f56f815948b16ac6c50de8db4741816723
4
+ data.tar.gz: 699f6ee7f3d69849a21823d3b3821a3829e2620e
5
+ SHA512:
6
+ metadata.gz: 1f65a0e34aa759235c10c016d26ca3a01a2e589fd8994e3b28d487bae629f10aea44df676eb61cfe0650b16be70662681343149ad0e2dc7b6219f0f485199db2
7
+ data.tar.gz: 3d85b9f5167270bf30cdf6d7d5e21c8be3520cac3ace854720408c9d70c8b299f55b4eb351a0460fad438e5717d22ab7bf88c4c584fbc20543694a7b625ee6b4
@@ -0,0 +1,14 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.bundle
11
+ *.so
12
+ *.o
13
+ *.a
14
+ mkmf.log
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in all_access.gemspec
4
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2015 Coburn Berry
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.
@@ -0,0 +1,53 @@
1
+ # AllAccess
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'all_access'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install all_access
20
+
21
+ ## Usage
22
+
23
+ # AllAccess
24
+ don't write attr_accessor
25
+
26
+ You have a class that is really just a bag of data, and I wanted to access the attributes with dot notation a'la javascript
27
+
28
+ Yes this is unnecessary
29
+
30
+ Usage:
31
+ ```Ruby
32
+ class Accessible
33
+ include AllAccess
34
+
35
+ def initialize
36
+ @test = "testy"
37
+ end
38
+ end
39
+
40
+ accessible = Accessible.new
41
+ accessible.test # "testy"
42
+ accessible.test = "bacon"
43
+ accessible.test # "bacon"
44
+ ```
45
+
46
+ NB. only works on attributes initialized in initializer
47
+ ## Contributing
48
+
49
+ 1. Fork it ( https://github.com/[my-github-username]/all_access/fork )
50
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
51
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
52
+ 4. Push to the branch (`git push origin my-new-feature`)
53
+ 5. Create a new Pull Request
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
@@ -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 'all_access/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "all_access"
8
+ spec.version = AllAccess::VERSION
9
+ spec.authors = ["Coburn Berry"]
10
+ spec.email = ["coburn.d.berry@gmail.com"]
11
+ spec.summary = %q{generate accessors for intance variables in initializer}
12
+ spec.description = %q{Your class is really a bag of attributes}
13
+ spec.homepage = ""
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.7"
22
+ spec.add_development_dependency "rake", "~> 10.0"
23
+ end
@@ -0,0 +1,40 @@
1
+ require "all_access/version"
2
+
3
+ module AllAccess
4
+ module Initializer
5
+ def initialize
6
+ super
7
+ create_readers
8
+ create_writers
9
+ end
10
+
11
+ def ivar_strings_and_symbols
12
+ instance_variables.map do |iv|
13
+ [iv.to_s.gsub("@",'').to_sym, iv.to_s]
14
+ end
15
+ end
16
+
17
+ def create_readers
18
+ ivar_strings_and_symbols.each do |iv|
19
+ define_singleton_method iv[0].to_sym, lambda { eval(iv[1]) }
20
+ end
21
+ end
22
+
23
+
24
+ def create_writers
25
+ ivar_strings_and_symbols.each do |iv|
26
+ define_singleton_method "#{iv[0]}=".to_sym, lambda {|assignment|
27
+ if assignment.class == String
28
+ eval "#{iv[1]} = '#{assignment}'"
29
+ else
30
+ eval "#{iv[1]} = #{assignment}"
31
+ end
32
+ }
33
+ end
34
+ end
35
+ end
36
+
37
+ def self.included(klass)
38
+ klass.send :prepend, Initializer
39
+ end
40
+ end
@@ -0,0 +1,3 @@
1
+ module AllAccess
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,38 @@
1
+ require 'minitest/autorun'
2
+ require_relative './spec_helper.rb'
3
+
4
+ describe AllAccess do
5
+ before do
6
+ class NoAccessor
7
+ include AllAccess
8
+ def initialize
9
+ @test = "testy"
10
+ end
11
+ end
12
+
13
+ @testObject = NoAccessor.new
14
+ end
15
+
16
+ describe "set instance variables set in initializer" do
17
+ it "creates readers" do
18
+ @testObject.test.must_equal "testy"
19
+ end
20
+ describe "writing" do
21
+ it "can write a string" do
22
+ @testObject.test = "toosty"
23
+ @testObject.test.must_equal "toosty"
24
+ end
25
+
26
+ it "can write a number" do
27
+ @testObject.test = 50
28
+ @testObject.test.must_equal 50
29
+ end
30
+
31
+ it "can write a method result" do
32
+ @testObject.test = ["a"] << 10
33
+ @testObject.test.must_equal ["a",10]
34
+ end
35
+ end
36
+ end
37
+
38
+ end
@@ -0,0 +1 @@
1
+ require 'all_access.rb'
metadata ADDED
@@ -0,0 +1,84 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: all_access
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Coburn Berry
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-06-28 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.7'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.7'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ description: Your class is really a bag of attributes
42
+ email:
43
+ - coburn.d.berry@gmail.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - ".gitignore"
49
+ - Gemfile
50
+ - LICENSE.txt
51
+ - README.md
52
+ - Rakefile
53
+ - all_access.gemspec
54
+ - lib/all_access.rb
55
+ - lib/all_access/version.rb
56
+ - spec/all_access_spec.rb
57
+ - spec/spec_helper.rb
58
+ homepage: ''
59
+ licenses:
60
+ - MIT
61
+ metadata: {}
62
+ post_install_message:
63
+ rdoc_options: []
64
+ require_paths:
65
+ - lib
66
+ required_ruby_version: !ruby/object:Gem::Requirement
67
+ requirements:
68
+ - - ">="
69
+ - !ruby/object:Gem::Version
70
+ version: '0'
71
+ required_rubygems_version: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ requirements: []
77
+ rubyforge_project:
78
+ rubygems_version: 2.2.2
79
+ signing_key:
80
+ specification_version: 4
81
+ summary: generate accessors for intance variables in initializer
82
+ test_files:
83
+ - spec/all_access_spec.rb
84
+ - spec/spec_helper.rb