c3s 0.4.12 → 0.4.13

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/Manifest +1 -0
  2. data/c3s.gemspec +4 -4
  3. data/lib/model.rb +1 -1
  4. data/lib/version.rb +1 -1
  5. metadata +6 -6
data/Manifest CHANGED
@@ -1,6 +1,7 @@
1
1
  README.rdoc
2
2
  Rakefile
3
3
  c3s
4
+ c3s.gemspec
4
5
  lib/c3s.rb
5
6
  lib/c3s_logger.rb
6
7
  lib/component.rb
data/c3s.gemspec CHANGED
@@ -2,12 +2,12 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{c3s}
5
- s.version = "0.4.12"
5
+ s.version = "0.4.13"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Ricardo Otero"]
9
- s.date = %q{2011-04-14}
10
- s.description = %q{C3S 0.4.12 - Library to make context entities on C3S project.}
9
+ s.date = %q{2011-04-20}
10
+ s.description = %q{C3S 0.4.13 - Library to make context entities on C3S project.}
11
11
  s.email = %q{oterosantos@gmail.com}
12
12
  s.extra_rdoc_files = ["README.rdoc", "lib/c3s.rb", "lib/c3s_logger.rb", "lib/component.rb", "lib/component_connection.rb", "lib/configreader.rb", "lib/databaseadapter.rb", "lib/model.rb", "lib/pubsub/node.rb", "lib/pubsub/nodetracker.rb", "lib/pubsub/publisher.rb", "lib/pubsub/subscriber.rb", "lib/republisher.rb", "lib/version.rb"]
13
13
  s.files = ["README.rdoc", "Rakefile", "c3s", "c3s.gemspec", "lib/c3s.rb", "lib/c3s_logger.rb", "lib/component.rb", "lib/component_connection.rb", "lib/configreader.rb", "lib/databaseadapter.rb", "lib/model.rb", "lib/pubsub/node.rb", "lib/pubsub/nodetracker.rb", "lib/pubsub/publisher.rb", "lib/pubsub/subscriber.rb", "lib/republisher.rb", "lib/version.rb", "Manifest"]
@@ -16,7 +16,7 @@ Gem::Specification.new do |s|
16
16
  s.require_paths = ["lib"]
17
17
  s.rubyforge_project = %q{c3s}
18
18
  s.rubygems_version = %q{1.4.1}
19
- s.summary = %q{C3S 0.4.12 - Library to make context entities on C3S project.}
19
+ s.summary = %q{C3S 0.4.13 - Library to make context entities on C3S project.}
20
20
 
21
21
  if s.respond_to? :specification_version then
22
22
  s.specification_version = 3
data/lib/model.rb CHANGED
@@ -46,7 +46,7 @@ module C3sModel
46
46
  # Updates multiple attributes at once
47
47
  # attributes:: [Hash] the attributes hash
48
48
  def update_attributes(attributes={})
49
- self.send(:attributes=, attributes, false)
49
+ self.send(:attributes=, attributes)
50
50
  end
51
51
 
52
52
  ##
data/lib/version.rb CHANGED
@@ -2,7 +2,7 @@ module C3s
2
2
  module VERSION
3
3
  MAJOR = 0
4
4
  MINOR = 4
5
- TINY = 12
5
+ TINY = 13
6
6
 
7
7
  VERSION = [MAJOR, MINOR, TINY].join('.')
8
8
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: c3s
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 21
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 4
9
- - 12
10
- version: 0.4.12
9
+ - 13
10
+ version: 0.4.13
11
11
  platform: ruby
12
12
  authors:
13
13
  - Ricardo Otero
@@ -15,11 +15,11 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-04-14 00:00:00 +01:00
18
+ date: 2011-04-20 00:00:00 +01:00
19
19
  default_executable:
20
20
  dependencies: []
21
21
 
22
- description: C3S 0.4.12 - Library to make context entities on C3S project.
22
+ description: C3S 0.4.13 - Library to make context entities on C3S project.
23
23
  email: oterosantos@gmail.com
24
24
  executables: []
25
25
 
@@ -98,6 +98,6 @@ rubyforge_project: c3s
98
98
  rubygems_version: 1.4.1
99
99
  signing_key:
100
100
  specification_version: 3
101
- summary: C3S 0.4.12 - Library to make context entities on C3S project.
101
+ summary: C3S 0.4.13 - Library to make context entities on C3S project.
102
102
  test_files: []
103
103