cadenero 0.0.2.b7 → 0.0.2.b8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- Y2Y5NTFlM2YzZjVjMzY2OTBjMDg2ZDA2NmVhZWY1MmM4OWUzYTc4OA==
4
+ MjFhZjQ5ZWY0MGI1ZDU0OGYwOTEwNWNjN2ZiZGNkZmUwNzgwMDI5ZA==
5
5
  data.tar.gz: !binary |-
6
- MjE3ZTBmODY0MDJlOGRkYTQ0NjYwYTVlOTAyMzY3YWEwNjRlOGUxMg==
6
+ OTczMTk0ZGE1NTg3ZTUzNzZkOTI5NjE0Y2VkY2Q4NWEwYzJlY2QzMw==
7
7
  !binary "U0hBNTEy":
8
8
  metadata.gz: !binary |-
9
- NGYyN2MyNDk2YWVjYWE0ZWIyZDcyNjEzMWNlNzA1MTMwNzQ5YzQ1MDM5NmZk
10
- NjU1ZDljZmYyYzk0YWVhZTU3YmJjMDY2MjVkYTEzMzdlNThiMDEyZWZkM2M2
11
- YTRjYWViNzczZmY0MTEyNDdkYmRjYWVhN2Y2YWM1MDJlYTE4OWY=
9
+ YzY4OTE2NmNjYzcwZGU0ZDdiYzJlZTI4YzcyZDdhNjZjNTQxZWZkNTU2ZGU2
10
+ YTYzZTg4MDVlYjQ0YWNhNmRmYWQwYjIxMjViZjliZjE5ZWJmMDZlZGQ3ZTE4
11
+ ZTc4ODMwMmQyZTEyN2JkY2RhMWUwZGUxNzM1YTFhNTAzZTcyMDE=
12
12
  data.tar.gz: !binary |-
13
- NmZhYmMyMDEwNzAzOTMxYmNlYjM5YzBmMzIyY2FhNDc5MTkzZTM3NzJjYTJh
14
- NjAwNjYyMDliMmY1NmZkZTdmY2U4YjNiZGNjNzViMjc5YzEzNDg2MmViZDE5
15
- OGJkOTc1ZmZjNzBiMzA4YzgzZjZlMTg1ZmE5MTdhYjQxYTg4ZWE=
13
+ ZDhkYzE0YTc4OWEyNmZjZDNiM2Y0MGI5Mjk0ZmQwMWY3OTZiNDNhOTg4YTg4
14
+ MTNjZjNhZGE0MWYwOTA2NTNhN2Y0NGVhNjAwZTk4NTZmZjdhZmIxMmNhY2Vk
15
+ NTU4OGZkMTQxYWUyYzMwODgxYzhiY2VkMTRjMmNhYTE0OWY5MDc=
data/README.md CHANGED
@@ -49,7 +49,7 @@ Generate first your Rails app as usual using:
49
49
 
50
50
  In the `Gemfile` add the following lines:
51
51
  ```ruby
52
- gem 'cadenero', '~> 0.0.2.b7'
52
+ gem 'cadenero', '~> 0.0.2.b8'
53
53
 
54
54
  group :development, :test do
55
55
  gem 'rspec-rails', '~> 2.14.0'
@@ -159,7 +159,11 @@ You can review the YARD docs in: http://rubydoc.info/github/AgilTec/cadenero/fra
159
159
  - [ ] Examples of use and demo
160
160
 
161
161
  ### Versions
162
- **Cadenero** use [Semantic Versioning 2.0.0](http://semver.org/) the current version is: 0.0.2-b6 meaning MAJOR.MINOR.PATCH format
162
+ **Cadenero** aims to adhere to [Semantic Versioning 2.0.0](http://semver.org/) the current version is: 0.0.2-b8 meaning MAJOR.MINOR.PATCH format. Violations of this scheme should be reported as bugs. Specifically, if a minor or patch version is released that breaks backward compatibility, that version should be immediately yanked and/or a new version should be immediately released that restores compatibility. Breaking changes to the public API will only be introduced with new major versions. As a result of this policy, you can (and should) specify a dependency on this gem using the [Pessimistic Version Constraint](http://docs.rubygems.org/read/chapter/16#page74) with two digits of precision. For example:
163
+
164
+ ```
165
+ spec.add_dependency 'cadenero', '~> 1.0'
166
+ ```
163
167
 
164
168
  ### Bug reports
165
169
 
@@ -1,3 +1,3 @@
1
1
  module Cadenero
2
- VERSION = "0.0.2.b7" # Current VERSION of Cadenero
2
+ VERSION = "0.0.2.b8" # Current VERSION of Cadenero
3
3
  end