version_info 1.1.1 → 1.1.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/.travis.yml ADDED
@@ -0,0 +1 @@
1
+ rvm: 1.9.2
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- version_info (1.0.0)
4
+ version_info (1.1.1)
5
5
 
6
6
  GEM
7
7
  remote: http://rubygems.org/
data/Rakefile CHANGED
@@ -13,3 +13,12 @@ VersionInfo::RakeTasks.install(:class => VersionInfo)
13
13
  # now we have VersionInfo::VERSION defined, can load this
14
14
  Bundler::GemHelper.install_tasks
15
15
 
16
+ require 'rspec/core/rake_task'
17
+
18
+ desc "run specs"
19
+ RSpec::Core::RakeTask.new do |t|
20
+ t.rspec_opts = ["-c", "-f progress", "-r ./spec/spec_helper.rb"]
21
+ t.pattern = 'spec/**/*_spec.rb'
22
+ end
23
+
24
+ task :default => :spec
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  major: 1
3
3
  minor: 1
4
- patch: 1
4
+ patch: 2
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: version_info
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 1.1.1
5
+ version: 1.1.2
6
6
  platform: ruby
7
7
  authors:
8
8
  - Jorge L. Cangas
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-07-18 00:00:00 Z
13
+ date: 2011-09-05 00:00:00 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: bundler
@@ -67,6 +67,7 @@ extra_rdoc_files: []
67
67
 
68
68
  files:
69
69
  - .gitignore
70
+ - .travis.yml
70
71
  - Gemfile
71
72
  - Gemfile.lock
72
73
  - LICENSE
@@ -106,7 +107,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
106
107
  requirements: []
107
108
 
108
109
  rubyforge_project: version_info
109
- rubygems_version: 1.8.5
110
+ rubygems_version: 1.8.10
110
111
  signing_key:
111
112
  specification_version: 3
112
113
  summary: A Ruby gem to manage your project version data. Rake tasks included!