jaysus 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/CHANGELOG +3 -0
  2. data/VERSION +1 -1
  3. data/jaysus.gemspec +3 -2
  4. data/lib/jaysus/base.rb +3 -1
  5. metadata +5 -4
@@ -0,0 +1,3 @@
1
+ Tues, Jan 25, 2011
2
+ - - - - - - - - -
3
+ - Add support for modules within modules
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{jaysus}
8
- s.version = "0.1.0"
8
+ s.version = "0.1.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Paul Campbell"]
12
- s.date = %q{2011-01-16}
12
+ s.date = %q{2011-01-25}
13
13
  s.description = %q{Persist remote JSON APIs locally and vice versa}
14
14
  s.email = %q{paul@rslw.com}
15
15
  s.extra_rdoc_files = [
@@ -19,6 +19,7 @@ Gem::Specification.new do |s|
19
19
  s.files = [
20
20
  ".document",
21
21
  ".rspec",
22
+ "CHANGELOG",
22
23
  "Gemfile",
23
24
  "Gemfile.lock",
24
25
  "LICENSE.txt",
@@ -71,7 +71,9 @@ module Jaysus
71
71
  end
72
72
 
73
73
  def self.model_name
74
- ActiveModel::Name.new(super.split('::').first.constantize)
74
+ parts = super.split('::')
75
+ name_part = parts[parts.length-2]
76
+ ActiveModel::Name.new(name_part.constantize)
75
77
  end
76
78
 
77
79
  def self.plural_name
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jaysus
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 25
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 0
10
- version: 0.1.0
9
+ - 1
10
+ version: 0.1.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Paul Campbell
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-01-16 00:00:00 +00:00
18
+ date: 2011-01-25 00:00:00 +00:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -170,6 +170,7 @@ extra_rdoc_files:
170
170
  files:
171
171
  - .document
172
172
  - .rspec
173
+ - CHANGELOG
173
174
  - Gemfile
174
175
  - Gemfile.lock
175
176
  - LICENSE.txt