cadun 0.0.1 → 0.0.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/.rvmrc ADDED
@@ -0,0 +1 @@
1
+ rvm 1.9.2@cadun
data/cadun.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
  $:.push File.expand_path('../lib', __FILE__)
3
- require "cadun"
3
+ require "cadun/version"
4
4
 
5
5
  Gem::Specification.new do |s|
6
6
  s.name = "cadun"
@@ -0,0 +1,3 @@
1
+ module Cadun
2
+ VERSION = "0.0.2"
3
+ end
data/lib/cadun.rb CHANGED
@@ -7,7 +7,3 @@ require 'nokogiri'
7
7
  require 'date'
8
8
  require 'cadun/gateway'
9
9
  require 'cadun/user'
10
-
11
- module Cadun
12
- VERSION = "0.0.1"
13
- end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: cadun
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.0.1
5
+ version: 0.0.2
6
6
  platform: ruby
7
7
  authors:
8
8
  - Bruno Azisaka Maciel
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-05-17 00:00:00 -03:00
13
+ date: 2011-05-18 00:00:00 -03:00
14
14
  default_executable:
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
@@ -80,12 +80,14 @@ extra_rdoc_files: []
80
80
  files:
81
81
  - .gitignore
82
82
  - .rspec
83
+ - .rvmrc
83
84
  - Gemfile
84
85
  - Rakefile
85
86
  - cadun.gemspec
86
87
  - lib/cadun.rb
87
88
  - lib/cadun/gateway.rb
88
89
  - lib/cadun/user.rb
90
+ - lib/cadun/version.rb
89
91
  - spec/cadun/gateway_spec.rb
90
92
  - spec/cadun/user_spec.rb
91
93
  - spec/spec_helper.rb