object_identifier 0.0.6 → 0.1.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.
- checksums.yaml +5 -5
- data/.gitignore +11 -0
- data/.travis.yml +21 -0
- data/CHANGELOG.md +10 -0
- data/Gemfile +6 -0
- data/Gemfile.lock +51 -0
- data/LICENSE.txt +21 -0
- data/README.md +82 -48
- data/Rakefile +6 -28
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/lib/object_identifier/core_ext/big_decimal.rb +4 -2
- data/lib/object_identifier/core_ext/object.rb +6 -7
- data/lib/object_identifier/core_ext/string.rb +6 -6
- data/lib/object_identifier/core_ext/symbol.rb +2 -2
- data/lib/object_identifier/identifier.rb +59 -59
- data/lib/object_identifier/version.rb +1 -1
- data/lib/object_identifier.rb +4 -5
- data/object_identifier.gemspec +40 -0
- metadata +105 -109
- data/MIT-LICENSE +0 -20
- data/lib/object_identifier/deidentifier.rb +0 -78
- data/test/core_ext/big_decimal_test.rb +0 -12
- data/test/core_ext/object_test.rb +0 -11
- data/test/core_ext/string_test.rb +0 -9
- data/test/core_ext/symbol_test.rb +0 -9
- data/test/deidentifier_test.rb +0 -28
- data/test/dummy/README.rdoc +0 -28
- data/test/dummy/Rakefile +0 -6
- data/test/dummy/app/assets/javascripts/application.js +0 -13
- data/test/dummy/app/assets/stylesheets/application.css +0 -13
- data/test/dummy/app/controllers/application_controller.rb +0 -5
- data/test/dummy/app/helpers/application_helper.rb +0 -2
- data/test/dummy/app/views/layouts/application.html.erb +0 -14
- data/test/dummy/bin/bundle +0 -3
- data/test/dummy/bin/rails +0 -4
- data/test/dummy/bin/rake +0 -4
- data/test/dummy/config/application.rb +0 -23
- data/test/dummy/config/boot.rb +0 -5
- data/test/dummy/config/database.yml +0 -25
- data/test/dummy/config/environment.rb +0 -5
- data/test/dummy/config/environments/development.rb +0 -29
- data/test/dummy/config/environments/production.rb +0 -80
- data/test/dummy/config/environments/test.rb +0 -36
- data/test/dummy/config/initializers/backtrace_silencers.rb +0 -7
- data/test/dummy/config/initializers/filter_parameter_logging.rb +0 -4
- data/test/dummy/config/initializers/inflections.rb +0 -16
- data/test/dummy/config/initializers/mime_types.rb +0 -5
- data/test/dummy/config/initializers/secret_token.rb +0 -12
- data/test/dummy/config/initializers/session_store.rb +0 -3
- data/test/dummy/config/initializers/wrap_parameters.rb +0 -14
- data/test/dummy/config/locales/en.yml +0 -23
- data/test/dummy/config/routes.rb +0 -56
- data/test/dummy/config.ru +0 -4
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +0 -0
- data/test/dummy/log/test.log +0 -0
- data/test/dummy/public/404.html +0 -58
- data/test/dummy/public/422.html +0 -58
- data/test/dummy/public/500.html +0 -57
- data/test/dummy/public/favicon.ico +0 -0
- data/test/object_identifier_test.rb +0 -70
- data/test/test_helper.rb +0 -15
data/test/dummy/public/500.html
DELETED
@@ -1,57 +0,0 @@
|
|
1
|
-
<!DOCTYPE html>
|
2
|
-
<html>
|
3
|
-
<head>
|
4
|
-
<title>We're sorry, but something went wrong (500)</title>
|
5
|
-
<style>
|
6
|
-
body {
|
7
|
-
background-color: #EFEFEF;
|
8
|
-
color: #2E2F30;
|
9
|
-
text-align: center;
|
10
|
-
font-family: arial, sans-serif;
|
11
|
-
}
|
12
|
-
|
13
|
-
div.dialog {
|
14
|
-
width: 25em;
|
15
|
-
margin: 4em auto 0 auto;
|
16
|
-
border: 1px solid #CCC;
|
17
|
-
border-right-color: #999;
|
18
|
-
border-left-color: #999;
|
19
|
-
border-bottom-color: #BBB;
|
20
|
-
border-top: #B00100 solid 4px;
|
21
|
-
border-top-left-radius: 9px;
|
22
|
-
border-top-right-radius: 9px;
|
23
|
-
background-color: white;
|
24
|
-
padding: 7px 4em 0 4em;
|
25
|
-
}
|
26
|
-
|
27
|
-
h1 {
|
28
|
-
font-size: 100%;
|
29
|
-
color: #730E15;
|
30
|
-
line-height: 1.5em;
|
31
|
-
}
|
32
|
-
|
33
|
-
body > p {
|
34
|
-
width: 33em;
|
35
|
-
margin: 0 auto 1em;
|
36
|
-
padding: 1em 0;
|
37
|
-
background-color: #F7F7F7;
|
38
|
-
border: 1px solid #CCC;
|
39
|
-
border-right-color: #999;
|
40
|
-
border-bottom-color: #999;
|
41
|
-
border-bottom-left-radius: 4px;
|
42
|
-
border-bottom-right-radius: 4px;
|
43
|
-
border-top-color: #DADADA;
|
44
|
-
color: #666;
|
45
|
-
box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
|
46
|
-
}
|
47
|
-
</style>
|
48
|
-
</head>
|
49
|
-
|
50
|
-
<body>
|
51
|
-
<!-- This file lives in public/500.html -->
|
52
|
-
<div class="dialog">
|
53
|
-
<h1>We're sorry, but something went wrong.</h1>
|
54
|
-
</div>
|
55
|
-
<p>If you are the application owner check the logs for more information.</p>
|
56
|
-
</body>
|
57
|
-
</html>
|
File without changes
|
@@ -1,70 +0,0 @@
|
|
1
|
-
require "test_helper"
|
2
|
-
|
3
|
-
describe ObjectIdentifier::Identifier do
|
4
|
-
describe "#identify" do
|
5
|
-
it "yields 'Class[id:1]', GIVEN id and no attributes" do
|
6
|
-
OpenStruct.new(id: 1).identify.must_equal "OpenStruct[id:1]"
|
7
|
-
end
|
8
|
-
|
9
|
-
it "lists each entry in collection" do
|
10
|
-
collection = [OpenStruct.new(id: 1), OpenStruct.new(id: 2)]
|
11
|
-
collection.identify.must_equal "OpenStruct[id:1], OpenStruct[id:2]"
|
12
|
-
end
|
13
|
-
|
14
|
-
describe "no attributes, no id, empty array, nil" do
|
15
|
-
it "yields 'Class[]', GIVEN no id or attributes" do
|
16
|
-
Object.new.identify.must_equal "Object[]"
|
17
|
-
end
|
18
|
-
|
19
|
-
it "yields '[no objects]', GIVEN an empty array" do
|
20
|
-
[].identify.must_equal "[no objects]"
|
21
|
-
end
|
22
|
-
|
23
|
-
it "yields '[no objects]', GIVEN nil" do
|
24
|
-
nil.identify.must_equal "[no objects]"
|
25
|
-
end
|
26
|
-
end
|
27
|
-
|
28
|
-
describe "with attributes" do
|
29
|
-
it "yields attribute values" do
|
30
|
-
obj = OpenStruct.new(name: "Pepper", beak_size: 4)
|
31
|
-
obj.identify(:beak_size).must_equal "OpenStruct[beak_size:4]"
|
32
|
-
end
|
33
|
-
|
34
|
-
it "quotes strings" do
|
35
|
-
obj = OpenStruct.new(name: "Pepper")
|
36
|
-
obj.identify(:name).must_equal %(OpenStruct[name:"Pepper"])
|
37
|
-
end
|
38
|
-
|
39
|
-
it "quotes symbols" do
|
40
|
-
obj = OpenStruct.new(name: "Pepper", color: :grey)
|
41
|
-
obj.identify(:color).must_equal %(OpenStruct[color::"grey"])
|
42
|
-
end
|
43
|
-
|
44
|
-
it "ignores attributes that don't exist" do
|
45
|
-
obj = OpenStruct.new(name: "Pepper", color: :grey, beak_size: 4)
|
46
|
-
obj.identify(:volume, :beak_size).must_equal "OpenStruct[beak_size:4]"
|
47
|
-
end
|
48
|
-
end
|
49
|
-
|
50
|
-
describe "options" do
|
51
|
-
it "overrides object class name with :klass" do
|
52
|
-
OpenStruct.new(id: 1).identify(klass: "Monkey").must_equal "Monkey[id:1]"
|
53
|
-
end
|
54
|
-
|
55
|
-
it "yields no class, GIVEN class is empty string" do
|
56
|
-
OpenStruct.new(id: 1).identify(klass: "").must_equal "[id:1]"
|
57
|
-
OpenStruct.new(id: 1).identify(klass: nil).must_equal "[id:1]"
|
58
|
-
end
|
59
|
-
|
60
|
-
it "overrides object class name with :klass with no attributes" do
|
61
|
-
[].identify(klass: "Monkey").must_equal "Monkey[]"
|
62
|
-
end
|
63
|
-
|
64
|
-
it "yields first n (:limit) objects in collection" do
|
65
|
-
(1..7).to_a.identify(:to_i, limit: 3).must_equal(
|
66
|
-
"Fixnum[to_i:1], Fixnum[to_i:2], Fixnum[to_i:3], ... (4 more)")
|
67
|
-
end
|
68
|
-
end
|
69
|
-
end
|
70
|
-
end
|
data/test/test_helper.rb
DELETED
@@ -1,15 +0,0 @@
|
|
1
|
-
ENV["RAILS_ENV"] = "test"
|
2
|
-
|
3
|
-
require File.expand_path("../dummy/config/environment.rb", __FILE__)
|
4
|
-
require "rails/test_help"
|
5
|
-
require "minitest/rails"
|
6
|
-
|
7
|
-
Rails.backtrace_cleaner.remove_silencers!
|
8
|
-
|
9
|
-
# Load support files
|
10
|
-
Dir[Rails.root.join("test/support/**/*.rb")].each { |f| require f }
|
11
|
-
|
12
|
-
# Load fixtures from the engine
|
13
|
-
if ActiveSupport::TestCase.method_defined?(:fixture_path=)
|
14
|
-
ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
|
15
|
-
end
|