wara 1.0.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.
Files changed (54) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +14 -0
  3. data/Gemfile +6 -0
  4. data/LICENSE.txt +22 -0
  5. data/README.md +36 -0
  6. data/Rakefile +2 -0
  7. data/bin/wara +26 -0
  8. data/coredata/BloodPressureWrapper.h +5 -0
  9. data/coredata/BloodPressureWrapper.m +15 -0
  10. data/coredata/CurrentPersonWrapper.h +5 -0
  11. data/coredata/CurrentPersonWrapper.m +15 -0
  12. data/coredata/HealthDataWrapper.h +5 -0
  13. data/coredata/HealthDataWrapper.m +15 -0
  14. data/coredata/Model.xcdatamodeld/Model.xcdatamodel/contents +43 -0
  15. data/coredata/NotSameWrapper.h +5 -0
  16. data/coredata/NotSameWrapper.m +15 -0
  17. data/coredata/PersonWrapper.h +5 -0
  18. data/coredata/PersonWrapper.m +15 -0
  19. data/coredata/_BloodPressureWrapper.h +14 -0
  20. data/coredata/_BloodPressureWrapper.m +25 -0
  21. data/coredata/_CurrentPersonWrapper.h +13 -0
  22. data/coredata/_CurrentPersonWrapper.m +19 -0
  23. data/coredata/_HealthDataWrapper.h +16 -0
  24. data/coredata/_HealthDataWrapper.m +25 -0
  25. data/coredata/_NotSameWrapper.h +24 -0
  26. data/coredata/_NotSameWrapper.m +41 -0
  27. data/coredata/_PersonWrapper.h +15 -0
  28. data/coredata/_PersonWrapper.m +23 -0
  29. data/lib/wara/version.rb +3 -0
  30. data/lib/wara.rb +85 -0
  31. data/out/BloodPressureWrapper.h +5 -0
  32. data/out/BloodPressureWrapper.m +15 -0
  33. data/out/CurrentPersonWrapper.h +5 -0
  34. data/out/CurrentPersonWrapper.m +15 -0
  35. data/out/HealthDataWrapper.h +5 -0
  36. data/out/HealthDataWrapper.m +15 -0
  37. data/out/NotSameWrapper.h +5 -0
  38. data/out/NotSameWrapper.m +15 -0
  39. data/out/PersonWrapper.h +5 -0
  40. data/out/PersonWrapper.m +15 -0
  41. data/out/_BloodPressureWrapper.h +14 -0
  42. data/out/_BloodPressureWrapper.m +25 -0
  43. data/out/_CurrentPersonWrapper.h +13 -0
  44. data/out/_CurrentPersonWrapper.m +19 -0
  45. data/out/_HealthDataWrapper.h +16 -0
  46. data/out/_HealthDataWrapper.m +25 -0
  47. data/out/_NotSameWrapper.h +24 -0
  48. data/out/_NotSameWrapper.m +41 -0
  49. data/out/_PersonWrapper.h +15 -0
  50. data/out/_PersonWrapper.m +23 -0
  51. data/spec/spec_helper.rb +78 -0
  52. data/spec/wara_spec.rb +119 -0
  53. data/wara.gemspec +27 -0
  54. metadata +132 -0
@@ -0,0 +1,15 @@
1
+ #import "HealthDataWrapper.h"
2
+
3
+
4
+ @interface HealthDataWrapper ()
5
+
6
+ // Private interface goes here.
7
+
8
+ @end
9
+
10
+
11
+ @implementation HealthDataWrapper
12
+
13
+ // Custom logic goes here.
14
+
15
+ @end
@@ -0,0 +1,5 @@
1
+ #import "_NotSameWrapper.h"
2
+
3
+ @interface NotSameWrapper : _NotSameWrapper {}
4
+ // Custom logic goes here.
5
+ @end
@@ -0,0 +1,15 @@
1
+ #import "NotSameWrapper.h"
2
+
3
+
4
+ @interface NotSameWrapper ()
5
+
6
+ // Private interface goes here.
7
+
8
+ @end
9
+
10
+
11
+ @implementation NotSameWrapper
12
+
13
+ // Custom logic goes here.
14
+
15
+ @end
@@ -0,0 +1,5 @@
1
+ #import "_PersonWrapper.h"
2
+
3
+ @interface PersonWrapper : _PersonWrapper {}
4
+ // Custom logic goes here.
5
+ @end
@@ -0,0 +1,15 @@
1
+ #import "PersonWrapper.h"
2
+
3
+
4
+ @interface PersonWrapper ()
5
+
6
+ // Private interface goes here.
7
+
8
+ @end
9
+
10
+
11
+ @implementation PersonWrapper
12
+
13
+ // Custom logic goes here.
14
+
15
+ @end
@@ -0,0 +1,14 @@
1
+ #import "HealthDataWrapper.h"
2
+
3
+ @class BloodPressure;
4
+
5
+
6
+ @interface _BloodPressureWrapper : HealthDataWrapper
7
+ @property(nonatomic, strong) NSNumber *bloodPressure;
8
+
9
+ - (BloodPressure *)entity;
10
+
11
+ - (instancetype)initWithEntity:(BloodPressure *)entity;
12
+
13
+ - (void)updateEntity:(BloodPressure *)entity;
14
+ @end
@@ -0,0 +1,25 @@
1
+ #import "_BloodPressureWrapper.h"
2
+ #import "BloodPressure.h"
3
+
4
+ @interface _BloodPressureWrapper ()
5
+ @end
6
+
7
+ @implementation _BloodPressureWrapper {
8
+ }
9
+ - (BloodPressure *)entity {
10
+ return (BloodPressure *) [super entity];
11
+ }
12
+
13
+ - (instancetype)initWithEntity:(BloodPressure *)entity {
14
+ self = [super initWithEntity:entity];
15
+ if (self) {
16
+ self.bloodPressure = entity.bloodPressure;
17
+ }
18
+ return self;
19
+ }
20
+
21
+ - (void)updateEntity:(BloodPressure *)entity {
22
+ [super updateEntity:entity];
23
+ entity.bloodPressure = self.bloodPressure;
24
+ }
25
+ @end
@@ -0,0 +1,13 @@
1
+ #import <Foundation/Foundation.h>
2
+
3
+ @class CurrentPerson;
4
+
5
+
6
+ @interface _CurrentPersonWrapper : NSObject
7
+
8
+ @property(readonly, strong, nonatomic) CurrentPerson *entity;
9
+
10
+ - (instancetype)initWithEntity:(CurrentPerson *)entity;
11
+
12
+ - (void)updateEntity:(CurrentPerson *)entity;
13
+ @end
@@ -0,0 +1,19 @@
1
+ #import "_CurrentPersonWrapper.h"
2
+ #import "CurrentPerson.h"
3
+
4
+ @interface _CurrentPersonWrapper ()
5
+ @end
6
+
7
+ @implementation _CurrentPersonWrapper {
8
+ }
9
+ - (instancetype)initWithEntity:(CurrentPerson *)entity {
10
+ self = [super init];
11
+ if (self) {
12
+ _entity = entity;
13
+ }
14
+ return self;
15
+ }
16
+
17
+ - (void)updateEntity:(CurrentPerson *)entity {
18
+ }
19
+ @end
@@ -0,0 +1,16 @@
1
+ #import <Foundation/Foundation.h>
2
+
3
+ @class HealthData;
4
+
5
+
6
+ @interface _HealthDataWrapper : NSObject
7
+ @property(nonatomic, strong) NSNumber *height;
8
+ @property(nonatomic, strong) NSDate *timeStamp;
9
+ @property(nonatomic, strong) NSNumber *weight;
10
+
11
+ @property(readonly, strong, nonatomic) HealthData *entity;
12
+
13
+ - (instancetype)initWithEntity:(HealthData *)entity;
14
+
15
+ - (void)updateEntity:(HealthData *)entity;
16
+ @end
@@ -0,0 +1,25 @@
1
+ #import "_HealthDataWrapper.h"
2
+ #import "HealthData.h"
3
+
4
+ @interface _HealthDataWrapper ()
5
+ @end
6
+
7
+ @implementation _HealthDataWrapper {
8
+ }
9
+ - (instancetype)initWithEntity:(HealthData *)entity {
10
+ self = [super init];
11
+ if (self) {
12
+ _entity = entity;
13
+ self.height = entity.height;
14
+ self.timeStamp = entity.timeStamp;
15
+ self.weight = entity.weight;
16
+ }
17
+ return self;
18
+ }
19
+
20
+ - (void)updateEntity:(HealthData *)entity {
21
+ entity.height = self.height;
22
+ entity.timeStamp = self.timeStamp;
23
+ entity.weight = self.weight;
24
+ }
25
+ @end
@@ -0,0 +1,24 @@
1
+ #import <Foundation/Foundation.h>
2
+
3
+ @class NotSame;
4
+
5
+
6
+ @interface _NotSameWrapper : NSObject
7
+ @property(nonatomic, strong) NSNumber *boolean;
8
+ @property(nonatomic, strong) NSData *data;
9
+ @property(nonatomic, strong) NSDate *date;
10
+ @property(nonatomic, strong) NSDecimalNumber *decimal;
11
+ @property(nonatomic, strong) NSNumber *double;
12
+ @property(nonatomic, strong) NSNumber *float;
13
+ @property(nonatomic, strong) NSNumber *int16;
14
+ @property(nonatomic, strong) NSNumber *int32;
15
+ @property(nonatomic, strong) NSNumber *int64;
16
+ @property(nonatomic, strong) NSString *string;
17
+ @property(nonatomic, strong) id transformable;
18
+
19
+ @property(readonly, strong, nonatomic) NotSame *entity;
20
+
21
+ - (instancetype)initWithEntity:(NotSame *)entity;
22
+
23
+ - (void)updateEntity:(NotSame *)entity;
24
+ @end
@@ -0,0 +1,41 @@
1
+ #import "_NotSameWrapper.h"
2
+ #import "NotSame.h"
3
+
4
+ @interface _NotSameWrapper ()
5
+ @end
6
+
7
+ @implementation _NotSameWrapper {
8
+ }
9
+ - (instancetype)initWithEntity:(NotSame *)entity {
10
+ self = [super init];
11
+ if (self) {
12
+ _entity = entity;
13
+ self.boolean = entity.boolean;
14
+ self.data = entity.data;
15
+ self.date = entity.date;
16
+ self.decimal = entity.decimal;
17
+ self.double = entity.double;
18
+ self.float = entity.float;
19
+ self.int16 = entity.int16;
20
+ self.int32 = entity.int32;
21
+ self.int64 = entity.int64;
22
+ self.string = entity.string;
23
+ self.transformable = entity.transformable;
24
+ }
25
+ return self;
26
+ }
27
+
28
+ - (void)updateEntity:(NotSame *)entity {
29
+ entity.boolean = self.boolean;
30
+ entity.data = self.data;
31
+ entity.date = self.date;
32
+ entity.decimal = self.decimal;
33
+ entity.double = self.double;
34
+ entity.float = self.float;
35
+ entity.int16 = self.int16;
36
+ entity.int32 = self.int32;
37
+ entity.int64 = self.int64;
38
+ entity.string = self.string;
39
+ entity.transformable = self.transformable;
40
+ }
41
+ @end
@@ -0,0 +1,15 @@
1
+ #import <Foundation/Foundation.h>
2
+
3
+ @class Person;
4
+
5
+
6
+ @interface _PersonWrapper : NSObject
7
+ @property(nonatomic, strong) NSDate *birthday;
8
+ @property(nonatomic, strong) NSString *name;
9
+
10
+ @property(readonly, strong, nonatomic) Person *entity;
11
+
12
+ - (instancetype)initWithEntity:(Person *)entity;
13
+
14
+ - (void)updateEntity:(Person *)entity;
15
+ @end
@@ -0,0 +1,23 @@
1
+ #import "_PersonWrapper.h"
2
+ #import "Person.h"
3
+
4
+ @interface _PersonWrapper ()
5
+ @end
6
+
7
+ @implementation _PersonWrapper {
8
+ }
9
+ - (instancetype)initWithEntity:(Person *)entity {
10
+ self = [super init];
11
+ if (self) {
12
+ _entity = entity;
13
+ self.birthday = entity.birthday;
14
+ self.name = entity.name;
15
+ }
16
+ return self;
17
+ }
18
+
19
+ - (void)updateEntity:(Person *)entity {
20
+ entity.birthday = self.birthday;
21
+ entity.name = self.name;
22
+ }
23
+ @end
@@ -0,0 +1,78 @@
1
+ # This file was generated by the `rspec --init` command. Conventionally, all
2
+ # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
3
+ # The generated `.rspec` file contains `--require spec_helper` which will cause this
4
+ # file to always be loaded, without a need to explicitly require it in any files.
5
+ #
6
+ # Given that it is always loaded, you are encouraged to keep this file as
7
+ # light-weight as possible. Requiring heavyweight dependencies from this file
8
+ # will add to the boot time of your test suite on EVERY test run, even for an
9
+ # individual file that may not need all of that loaded. Instead, make a
10
+ # separate helper file that requires this one and then use it only in the specs
11
+ # that actually need it.
12
+ #
13
+ # The `.rspec` file also contains a few flags that are not defaults but that
14
+ # users commonly want.
15
+ #
16
+ # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
17
+ RSpec.configure do |config|
18
+ # The settings below are suggested to provide a good initial experience
19
+ # with RSpec, but feel free to customize to your heart's content.
20
+ =begin
21
+ # These two settings work together to allow you to limit a spec run
22
+ # to individual examples or groups you care about by tagging them with
23
+ # `:focus` metadata. When nothing is tagged with `:focus`, all examples
24
+ # get run.
25
+ config.filter_run :focus
26
+ config.run_all_when_everything_filtered = true
27
+
28
+ # Many RSpec users commonly either run the entire suite or an individual
29
+ # file, and it's useful to allow more verbose output when running an
30
+ # individual spec file.
31
+ if config.files_to_run.one?
32
+ # Use the documentation formatter for detailed output,
33
+ # unless a formatter has already been configured
34
+ # (e.g. via a command-line flag).
35
+ config.default_formatter = 'doc'
36
+ end
37
+
38
+ # Print the 10 slowest examples and example groups at the
39
+ # end of the spec run, to help surface which specs are running
40
+ # particularly slow.
41
+ config.profile_examples = 10
42
+
43
+ # Run specs in random order to surface order dependencies. If you find an
44
+ # order dependency and want to debug it, you can fix the order by providing
45
+ # the seed, which is printed after each run.
46
+ # --seed 1234
47
+ config.order = :random
48
+
49
+ # Seed global randomization in this process using the `--seed` CLI option.
50
+ # Setting this allows you to use `--seed` to deterministically reproduce
51
+ # test failures related to randomization by passing the same `--seed` value
52
+ # as the one that triggered the failure.
53
+ Kernel.srand config.seed
54
+
55
+ # rspec-expectations config goes here. You can use an alternate
56
+ # assertion/expectation library such as wrong or the stdlib/minitest
57
+ # assertions if you prefer.
58
+ config.expect_with :rspec do |expectations|
59
+ # Enable only the newer, non-monkey-patching expect syntax.
60
+ # For more details, see:
61
+ # - http://myronmars.to/n/dev-blog/2012/06/rspecs-new-expectation-syntax
62
+ expectations.syntax = :expect
63
+ end
64
+
65
+ # rspec-mocks config goes here. You can use an alternate test double
66
+ # library (such as bogus or mocha) by changing the `mock_with` option here.
67
+ config.mock_with :rspec do |mocks|
68
+ # Enable only the newer, non-monkey-patching expect syntax.
69
+ # For more details, see:
70
+ # - http://teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
71
+ mocks.syntax = :expect
72
+
73
+ # Prevents you from mocking or stubbing a method that does not exist on
74
+ # a real object. This is generally recommended.
75
+ mocks.verify_partial_doubles = true
76
+ end
77
+ =end
78
+ end
data/spec/wara_spec.rb ADDED
@@ -0,0 +1,119 @@
1
+ require './lib/wara'
2
+ require 'fileutils'
3
+
4
+ module Wara
5
+ class Core
6
+ attr_reader :xml, :objects, :entities
7
+ end
8
+ end
9
+
10
+ describe Wara::Core, "load" do
11
+ let(:core) {Wara::Core.new() }
12
+ entity_names = ["BloodPressure", "HealthData", "CurrentPerson", "NotSame", "Person"]
13
+ describe "creaet" do
14
+ before do
15
+ entity_names.each {|n|
16
+ Dir["./out/*.*"].each {|n|
17
+ File.delete(n)
18
+ }
19
+ }
20
+ core.create("./coredata/Model.xcdatamodeld/Model.xcdatamodel", "./out")
21
+ end
22
+ describe "xml" do
23
+ let(:xml) { core.xml }
24
+ it(:create) {
25
+ expect(xml).not_to eq nil
26
+ }
27
+ end
28
+ describe "objects" do
29
+ let(:objects) {core.objects}
30
+ it(:count_objects) {
31
+ expect(objects.count).to eq 6
32
+ }
33
+ end
34
+ describe "entities" do
35
+ let(:entities) {core.entities}
36
+ it(:count) {
37
+ expect(entities.count).to eq 5
38
+ }
39
+ it(:has_name) {
40
+ entities.map { |v|
41
+ expect(v["name"]).not_to eq nil
42
+ }
43
+ }
44
+ it(:check_frist) {
45
+ expect(entities[0]).to eq(
46
+ {
47
+ "attributes" => {"bloodPressure"=>"Integer 32"},
48
+ "name"=>"BloodPressure",
49
+ "representedClassName"=>"BloodPressure",
50
+ "parentEntity"=>"HealthData",
51
+ } )
52
+ }
53
+ it(:check_second) {
54
+ expect(entities[1]).to eq(
55
+ {
56
+ "attributes" => {},
57
+ "name"=>"CurrentPerson",
58
+ "representedClassName"=>"CurrentPerson",
59
+ "parentEntity"=>nil,
60
+ } )
61
+ }
62
+ it(:check_2) {
63
+ expect(entities[2]).to eq(
64
+ {
65
+ "attributes" => {"height"=>"Integer 32", "timeStamp"=>"Date", "weight"=>"Integer 32"},
66
+ "name"=>"HealthData",
67
+ "representedClassName"=>"HealthData",
68
+ "parentEntity"=>nil,
69
+ } )
70
+ }
71
+ it(:check_3) {
72
+ expect(entities[3]).to eq(
73
+ {
74
+ "attributes" => {"boolean"=>"Boolean", "data"=>"Binary", "date"=>"Date", "decimal"=>"Decimal", "double"=>"Double", "float"=>"Float", "int16"=>"Integer 16", "int32"=>"Integer 32", "int64"=>"Integer 64", "string"=>"String", "transformable"=>"Transformable"},
75
+ "name"=>"NotSameCusstomClassName",
76
+ "representedClassName"=>"NotSame",
77
+ "parentEntity"=>nil,
78
+ } )
79
+ }
80
+ it(:check_4) {
81
+ expect(entities[4]).to eq(
82
+ {
83
+ "attributes" => {"birthday"=>"Date", "name"=>"String"},
84
+ "name"=>"Person",
85
+ "representedClassName"=>"Person",
86
+ "parentEntity"=>nil,
87
+ } )
88
+ }
89
+ end
90
+ entity_names.each {|e|
91
+ describe(:read_interface) {
92
+ let(:read_interface) { File.read("out/_#{e}Wrapper.h")}
93
+ let(:expected) { File.read("coredata/_#{e}Wrapper.h")}
94
+ it(e) { expect(read_interface).to eq expected }
95
+ }
96
+ }
97
+ entity_names.each {|e|
98
+ describe(:read_implementation) {
99
+ let(:read_implementation) { File.read("out/_#{e}Wrapper.m")}
100
+ let(:expected) { File.read("coredata/_#{e}Wrapper.m")}
101
+ it(e) { expect(read_implementation).to eq expected }
102
+ }
103
+ }
104
+ entity_names.each {|e|
105
+ describe(:read_interface_name) {
106
+ let(:read_interface_name) { File.read("out/#{e}Wrapper.h")}
107
+ let(:expected) { File.read("coredata/#{e}Wrapper.h")}
108
+ it(e) { expect(read_interface_name).to eq expected }
109
+ }
110
+ }
111
+ entity_names.each {|e|
112
+ describe(:read_implementation_name) {
113
+ let(:read_implementation_name) { File.read("out/#{e}Wrapper.m")}
114
+ let(:expected) { File.read("coredata/#{e}Wrapper.m")}
115
+ it(e) { expect(read_implementation_name).to eq expected }
116
+ }
117
+ }
118
+ end
119
+ end
data/wara.gemspec ADDED
@@ -0,0 +1,27 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'wara/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "wara"
8
+ spec.version = Wara::VERSION
9
+ spec.authors = ["akuraru"]
10
+ spec.email = ["akuraru@gmail.com"]
11
+ spec.summary = %q{This generate a scapegoat for objects of CoreData.}
12
+ spec.description = %q{Wara generate a scapegoat for objects of CoreData.
13
+
14
+ You are using CoreDate, if you want to change the Entity, it is necessary to create a sub-context.However, it takes time be used to manage the sub-context.On the other hand, it is necessary to undo to the default context if one context.
15
+
16
+ Wara is used to generate an object to make changes without the operation of the context if you want to change the entity.}
17
+ spec.homepage = ""
18
+ spec.license = "MIT"
19
+
20
+ spec.files = `git ls-files -z`.split("\x0")
21
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
22
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
23
+ spec.require_paths = ["lib"]
24
+
25
+ spec.add_development_dependency "bundler", "~> 1.6"
26
+ spec.add_development_dependency "rake", "~> 10.0"
27
+ end
metadata ADDED
@@ -0,0 +1,132 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: wara
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - akuraru
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-09-19 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.6'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.6'
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: |-
42
+ Wara generate a scapegoat for objects of CoreData.
43
+
44
+ You are using CoreDate, if you want to change the Entity, it is necessary to create a sub-context.However, it takes time be used to manage the sub-context.On the other hand, it is necessary to undo to the default context if one context.
45
+
46
+ Wara is used to generate an object to make changes without the operation of the context if you want to change the entity.
47
+ email:
48
+ - akuraru@gmail.com
49
+ executables:
50
+ - wara
51
+ extensions: []
52
+ extra_rdoc_files: []
53
+ files:
54
+ - ".gitignore"
55
+ - Gemfile
56
+ - LICENSE.txt
57
+ - README.md
58
+ - Rakefile
59
+ - bin/wara
60
+ - coredata/BloodPressureWrapper.h
61
+ - coredata/BloodPressureWrapper.m
62
+ - coredata/CurrentPersonWrapper.h
63
+ - coredata/CurrentPersonWrapper.m
64
+ - coredata/HealthDataWrapper.h
65
+ - coredata/HealthDataWrapper.m
66
+ - coredata/Model.xcdatamodeld/Model.xcdatamodel/contents
67
+ - coredata/NotSameWrapper.h
68
+ - coredata/NotSameWrapper.m
69
+ - coredata/PersonWrapper.h
70
+ - coredata/PersonWrapper.m
71
+ - coredata/_BloodPressureWrapper.h
72
+ - coredata/_BloodPressureWrapper.m
73
+ - coredata/_CurrentPersonWrapper.h
74
+ - coredata/_CurrentPersonWrapper.m
75
+ - coredata/_HealthDataWrapper.h
76
+ - coredata/_HealthDataWrapper.m
77
+ - coredata/_NotSameWrapper.h
78
+ - coredata/_NotSameWrapper.m
79
+ - coredata/_PersonWrapper.h
80
+ - coredata/_PersonWrapper.m
81
+ - lib/wara.rb
82
+ - lib/wara/version.rb
83
+ - out/BloodPressureWrapper.h
84
+ - out/BloodPressureWrapper.m
85
+ - out/CurrentPersonWrapper.h
86
+ - out/CurrentPersonWrapper.m
87
+ - out/HealthDataWrapper.h
88
+ - out/HealthDataWrapper.m
89
+ - out/NotSameWrapper.h
90
+ - out/NotSameWrapper.m
91
+ - out/PersonWrapper.h
92
+ - out/PersonWrapper.m
93
+ - out/_BloodPressureWrapper.h
94
+ - out/_BloodPressureWrapper.m
95
+ - out/_CurrentPersonWrapper.h
96
+ - out/_CurrentPersonWrapper.m
97
+ - out/_HealthDataWrapper.h
98
+ - out/_HealthDataWrapper.m
99
+ - out/_NotSameWrapper.h
100
+ - out/_NotSameWrapper.m
101
+ - out/_PersonWrapper.h
102
+ - out/_PersonWrapper.m
103
+ - spec/spec_helper.rb
104
+ - spec/wara_spec.rb
105
+ - wara.gemspec
106
+ homepage: ''
107
+ licenses:
108
+ - MIT
109
+ metadata: {}
110
+ post_install_message:
111
+ rdoc_options: []
112
+ require_paths:
113
+ - lib
114
+ required_ruby_version: !ruby/object:Gem::Requirement
115
+ requirements:
116
+ - - ">="
117
+ - !ruby/object:Gem::Version
118
+ version: '0'
119
+ required_rubygems_version: !ruby/object:Gem::Requirement
120
+ requirements:
121
+ - - ">="
122
+ - !ruby/object:Gem::Version
123
+ version: '0'
124
+ requirements: []
125
+ rubyforge_project:
126
+ rubygems_version: 2.0.14
127
+ signing_key:
128
+ specification_version: 4
129
+ summary: This generate a scapegoat for objects of CoreData.
130
+ test_files:
131
+ - spec/spec_helper.rb
132
+ - spec/wara_spec.rb