domain_driven 0.0.7 → 0.0.8

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: 2911bef10a91f72e12d540ff7b874f94a3052d4a
4
- data.tar.gz: 3e201837c9e6e34bbaffe4625da5060ad9d308a6
3
+ metadata.gz: 5e352c6b7fff53c18fea214bd5a63e14d91f1522
4
+ data.tar.gz: c18bda3639b777e34fcd0d27d2de96e045d6261a
5
5
  SHA512:
6
- metadata.gz: 886e5def055eea8237e5292c62ecf0793ca582add1b730d1bc3a39a1841e5ef26221799ca92256ee23e4797a372a4a93a179f53ac4a8dee1d8d97eb98bcb8323
7
- data.tar.gz: ed5ac5c2164f35c87d0bede32403890110608bfe8574c9052431de82d6f9275a4daf3f12c4814f3435dd877dc41b4dcada50f63a3642e97058bfe2b72f56a523
6
+ metadata.gz: 7b43bf4fbfb629019299c68306fa1135a47b203bc1dc60c786e3a27c0f3038465afc14e31b7111772fe0af694af7d4a0780cf276c0c83c6167955c46eea746a1
7
+ data.tar.gz: 62410e6c6d1dd39f1c0c9e8b2c2a2dfcad131f5367b39dc16ab0918b71106c5dcf10ee6a78a23001010a969f02ba9eafcc9ec50259df0d273e42980ed685c084
data/.travis.yml ADDED
@@ -0,0 +1,3 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.1.0
data/README.md CHANGED
@@ -1,5 +1,4 @@
1
- [![Gem Version](https://badge.fury.io/rb/domain_driven.png)](http://badge.fury.io/rb/domain_driven)
2
- [![Code Climate](https://codeclimate.com/github/mwindholtz/domain_driven.png)](https://codeclimate.com/github/mwindholtz/domain_driven)
1
+ [![Gem Version](https://badge.fury.io/rb/domain_driven.png)](http://badge.fury.io/rb/domain_driven) [![Code Climate](https://codeclimate.com/github/mwindholtz/domain_driven.png)](https://codeclimate.com/github/mwindholtz/domain_driven) [![Build Status](https://travis-ci.org/mwindholtz/domain_driven.png?branch=master)](https://travis-ci.org/mwindholtz/domain_driven)
3
2
 
4
3
  # Gem Status
5
4
  As of 4 March 2014, Incomplete Extraction.
@@ -54,7 +53,7 @@ Under constuction
54
53
  *[Jim Weirich](https://github.com/jimweirich)*
55
54
  For conversations explaining to us the ideas inside [wyriki](https://github.com/jimweirich/wyriki)
56
55
 
57
- *[Eric Evans](http://www.domainlanguage.com)*
56
+ *[Eric Evans](https://twitter.com/ericevans0)*
58
57
  For providing the concept of Domain Driven Design
59
58
 
60
59
 
@@ -66,3 +65,5 @@ For providing the concept of Domain Driven Design
66
65
  4. Push to the branch (`git push origin my-new-feature`)
67
66
  5. Create new Pull Request
68
67
 
68
+
69
+
data/Rakefile CHANGED
@@ -1 +1,7 @@
1
1
  require "bundler/gem_tasks"
2
+
3
+ task :default => :rspec
4
+
5
+ task :rspec do
6
+ sh 'rspec'
7
+ end
@@ -1,3 +1,3 @@
1
1
  module DomainDriven
2
- VERSION = "0.0.7"
2
+ VERSION = "0.0.8"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: domain_driven
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mark Windholtz
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-03-04 00:00:00.000000000 Z
11
+ date: 2014-03-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -131,6 +131,7 @@ extensions: []
131
131
  extra_rdoc_files: []
132
132
  files:
133
133
  - ".gitignore"
134
+ - ".travis.yml"
134
135
  - Gemfile
135
136
  - LICENSE.txt
136
137
  - README.md