letter_group 0.1.0 → 0.1.1

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: d65d470de1c64118554a38b944a92dfc20d3a517
4
- data.tar.gz: 62de52f0c116d0d6cf8a098b1d1e6248c99caeb4
3
+ metadata.gz: 3af31eadc667a91267e1dc0553c72df294c87e41
4
+ data.tar.gz: ec1270a8c43a3a37716d036b8037f2a8ab3617ff
5
5
  SHA512:
6
- metadata.gz: 8ccb5bbadd1690fa0e19ed5385388c722fd97189ef8896aab700258a34c34d223121e667afe93d411c399ee2ff8d2b46b17f69ca271a680bce503f4699879fa8
7
- data.tar.gz: cebc8accee5d9170987dcd161edca63cd79007ba0a693c1843343b657544b633ef35e60baa08249ca92d8800454398c13c6acbcf7ead7253305992c51786d99f
6
+ metadata.gz: 05f0ff0547e3b71fa1b584cf717d729d5aac3943db59a2f079b2e41c524dd96afb1c895aadcd826e9c4e037d7bd50489712795b233985c5346ccaead62733919
7
+ data.tar.gz: 1601feb1f22e896cad9773a1cd9a0d480e2e3a9da9a5093b37887d5d87fd4e256792d13e69a1e5453e435e95ad20aab910a812d710238f0854f7ebb8ec097325
data/.travis.yml CHANGED
@@ -1,4 +1,5 @@
1
1
  language: ruby
2
+ before_install: gem install bundler
2
3
  rvm:
3
4
  - 2.1.2
4
5
  - 2.2.1
data/README.md CHANGED
@@ -31,11 +31,27 @@ See specs for usage examples.
31
31
  After checking out the repo, run `bin/setup` to install dependencies. Then, run `bin/console` for an interactive prompt that will allow you to experiment.
32
32
 
33
33
  To install this gem onto your local machine, run `bundle exec rake install`.
34
-
34
+
35
35
  ## Maintenance
36
36
 
37
37
  To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release` to create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
38
38
 
39
+ ## Versioning
40
+
41
+ This library aims to adhere to [Semantic Versioning 2.0.0](http://semver.org/).
42
+ Violations of this scheme should be reported as bugs. Specifically,
43
+ if a minor or patch version is released that breaks backward
44
+ compatibility, a new version should be immediately released that
45
+ restores compatibility. Breaking changes to the public API will
46
+ only be introduced with new major versions.
47
+
48
+ As a result of this policy, you can (and should) specify a
49
+ dependency on this gem using the [Pessimistic Version Constraint](http://docs.rubygems.org/read/chapter/16#page74) with two digits of precision.
50
+
51
+ For example:
52
+
53
+ spec.add_dependency 'letter_group', '~> 0.1'
54
+
39
55
  ## Contributing
40
56
 
41
57
  1. Fork it ( https://github.com/[my-github-username]/letter_group/fork )
data/Rakefile CHANGED
@@ -1 +1,8 @@
1
1
  require "bundler/gem_tasks"
2
+
3
+ begin
4
+ require "rspec/core/rake_task"
5
+ RSpec::Core::RakeTask.new(:spec)
6
+ task :default => :spec
7
+ rescue LoadError
8
+ end
@@ -1,3 +1,3 @@
1
1
  module LetterGroup
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: letter_group
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Boling