ga_example_gem 0.0.3 → 0.0.4

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.
Files changed (3) hide show
  1. data/Rakefile +12 -0
  2. data/lib/ga_example_gem/version.rb +1 -1
  3. metadata +1 -1
data/Rakefile CHANGED
@@ -1,8 +1,20 @@
1
+ # Gives me a few helper tasks:
2
+
3
+ # `rake build`
4
+ # is
5
+ # gem build ga-example-gem.gemspec
6
+
7
+ # `rake release`
8
+ # is, and also tags it in Github for us
9
+ # gem push ga-example-gem-0.0.3.gem
10
+
1
11
  require 'bundler'
2
12
  Bundler::GemHelper.install_tasks
3
13
 
14
+ # Pulls in equiv of 'rspec spec' to be 'rake spec'
4
15
  require 'rspec/core/rake_task'
5
16
  RSpec::Core::RakeTask.new(:spec)
6
17
 
18
+ # If you just run 'rake', it will run 'rake spec'
7
19
  task test: :spec
8
20
  task default: :spec
@@ -3,5 +3,5 @@ module GaExampleGem
3
3
  # This sets the version of our gem
4
4
  # Its a bit complex, but check out Semantic Versionining
5
5
  # http://semver.org/
6
- VERSION = "0.0.3"
6
+ VERSION = "0.0.4"
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ga_example_gem
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: