hiroeorz-custom-active-record 0.1.1 → 0.1.2

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.
data/VERSION.yml CHANGED
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  :major: 0
3
3
  :minor: 1
4
- :patch: 1
4
+ :patch: 2
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{custom-active-record}
5
- s.version = "0.1.1"
5
+ s.version = "0.1.2"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["hiroeorz"]
@@ -20,10 +20,10 @@ Gem::Specification.new do |s|
20
20
  "Rakefile",
21
21
  "VERSION.yml",
22
22
  "custom-active-record.gemspec",
23
- "lib/custom-active-record.rb",
24
- "lib/custom-active-record/no-id-base.rb",
25
- "lib/custom-active-record/plurals-pkeys-base.rb",
26
- "lib/custom-active-record/sjis-base.rb",
23
+ "lib/custom_active_record.rb",
24
+ "lib/custom_active_record/no_id_base.rb",
25
+ "lib/custom_active_record/plurals_pkeys_base.rb",
26
+ "lib/custom_active_record/sjis_base.rb",
27
27
  "spec/custom-active-record_spec.rb",
28
28
  "spec/spec_helper.rb"
29
29
  ]
@@ -0,0 +1,5 @@
1
+ require "rubygems"
2
+ require "active_record"
3
+ require "custom_active_record/sjis_base.rb"
4
+ require "custom_active_record/no_id_base.rb"
5
+ require "custom_active_record/plurals_pkeys_base.rb"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hiroeorz-custom-active-record
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - hiroeorz
@@ -30,10 +30,10 @@ files:
30
30
  - Rakefile
31
31
  - VERSION.yml
32
32
  - custom-active-record.gemspec
33
- - lib/custom-active-record.rb
34
- - lib/custom-active-record/no-id-base.rb
35
- - lib/custom-active-record/plurals-pkeys-base.rb
36
- - lib/custom-active-record/sjis-base.rb
33
+ - lib/custom_active_record.rb
34
+ - lib/custom_active_record/no_id_base.rb
35
+ - lib/custom_active_record/plurals_pkeys_base.rb
36
+ - lib/custom_active_record/sjis_base.rb
37
37
  - spec/custom-active-record_spec.rb
38
38
  - spec/spec_helper.rb
39
39
  has_rdoc: true
@@ -1,5 +0,0 @@
1
- require "rubygems"
2
- require "active_record"
3
- require "custom-active-record/sjis-base.rb"
4
- require "custom-active-record/no-id-base.rb"
5
- require "custom-active-record/plurals-pkeys-base.rb"