object_identifier 0.0.2 → 0.0.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 157f8efe2cfccf189c024f9dbf79bd406bcd8161
4
- data.tar.gz: bf91af5bbe21d2ca45cc4020fe6db71d62f83bce
3
+ metadata.gz: 97409c6d7248a1cdd659e5c051c1d08220afd511
4
+ data.tar.gz: 78be1a73639f24bba4058b5cc0bb7f0c42ba9c6e
5
5
  SHA512:
6
- metadata.gz: 6e770c731b11d1789c09682845177510a6dbc0feb8f841f13955147dba10686f1ba0ecaecd31b11f4db05e320d72adb2c804c0e4333fcf211126c08dbfc6fe0f
7
- data.tar.gz: 15cae1fb559f72d069f45a95072859b056290c278768ab318fbad9d9ad20a5712144961763f8ceb8eff9b80e9d8c243680e5d4631f0ef22391b5d6200510293b
6
+ metadata.gz: 4d2d47ac701ca0caad18b11dc7b9ce00751aaf9f7caa48cbd569c0b6d75e4b80a60f22194da66609c22ec0118a0b3563089b057877fb8f1a5141a0f9bb696861
7
+ data.tar.gz: 9c66bbf4112053b1994692e4b10fa4a6549ea4917008443aafc0b04cd585dee2532660fc30d0c646051b9711ee89a7ebde136e451700a42fb978c73c8f3bf93f
@@ -1,3 +1,3 @@
1
1
  module ObjectIdentifier
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: object_identifier
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paul Dobbins
@@ -9,22 +9,22 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-11-20 00:00:00.000000000 Z
12
+ date: 2014-01-28 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
16
16
  requirement: !ruby/object:Gem::Requirement
17
17
  requirements:
18
- - - ~>
18
+ - - '>='
19
19
  - !ruby/object:Gem::Version
20
- version: 4.0.0
20
+ version: 3.0.0
21
21
  type: :runtime
22
22
  prerelease: false
23
23
  version_requirements: !ruby/object:Gem::Requirement
24
24
  requirements:
25
- - - ~>
25
+ - - '>='
26
26
  - !ruby/object:Gem::Version
27
- version: 4.0.0
27
+ version: 3.0.0
28
28
  - !ruby/object:Gem::Dependency
29
29
  name: naught
30
30
  requirement: !ruby/object:Gem::Requirement
@@ -102,18 +102,20 @@ executables: []
102
102
  extensions: []
103
103
  extra_rdoc_files: []
104
104
  files:
105
+ - MIT-LICENSE
106
+ - README.md
107
+ - Rakefile
108
+ - lib/object_identifier.rb
105
109
  - lib/object_identifier/core_ext/object.rb
106
110
  - lib/object_identifier/core_ext/string.rb
107
111
  - lib/object_identifier/core_ext/symbol.rb
108
112
  - lib/object_identifier/identifier.rb
109
113
  - lib/object_identifier/version.rb
110
- - lib/object_identifier.rb
111
- - MIT-LICENSE
112
- - Rakefile
113
- - README.md
114
114
  - test/core_ext/object_test.rb
115
115
  - test/core_ext/string_test.rb
116
116
  - test/core_ext/symbol_test.rb
117
+ - test/dummy/README.rdoc
118
+ - test/dummy/Rakefile
117
119
  - test/dummy/app/assets/javascripts/application.js
118
120
  - test/dummy/app/assets/stylesheets/application.css
119
121
  - test/dummy/app/controllers/application_controller.rb
@@ -122,6 +124,7 @@ files:
122
124
  - test/dummy/bin/bundle
123
125
  - test/dummy/bin/rails
124
126
  - test/dummy/bin/rake
127
+ - test/dummy/config.ru
125
128
  - test/dummy/config/application.rb
126
129
  - test/dummy/config/boot.rb
127
130
  - test/dummy/config/database.yml
@@ -138,15 +141,12 @@ files:
138
141
  - test/dummy/config/initializers/wrap_parameters.rb
139
142
  - test/dummy/config/locales/en.yml
140
143
  - test/dummy/config/routes.rb
141
- - test/dummy/config.ru
142
144
  - test/dummy/log/development.log
143
145
  - test/dummy/log/test.log
144
146
  - test/dummy/public/404.html
145
147
  - test/dummy/public/422.html
146
148
  - test/dummy/public/500.html
147
149
  - test/dummy/public/favicon.ico
148
- - test/dummy/Rakefile
149
- - test/dummy/README.rdoc
150
150
  - test/object_identifier_test.rb
151
151
  - test/test_helper.rb
152
152
  homepage: https://github.com/pdobb/object_identifier
@@ -169,7 +169,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
169
169
  version: '0'
170
170
  requirements: []
171
171
  rubyforge_project:
172
- rubygems_version: 2.1.10
172
+ rubygems_version: 2.2.0
173
173
  signing_key:
174
174
  specification_version: 4
175
175
  summary: Identify an object by inspecting its class name and attributes.