rtiss_acts_as_versioned 0.7.8 → 0.7.9

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2f630279fadaf312a0d49b69fe00dbdfadf0dde5
4
- data.tar.gz: a464dd23cb736ad635080101e14ef751afaa8543
3
+ metadata.gz: 4a52b967ef4cb3fd70eda63abb22684b5ee4d5b1
4
+ data.tar.gz: b057e9ebe4156925141231be0e28203b0a56e03c
5
5
  SHA512:
6
- metadata.gz: 73332935aafa174653421081523e244544595e740b6003a8b6be1907168f2645f467bafe4e55c63decebba4ac1c344f5d1dbe22b62b00e9709e9ed3c1fa49ef5
7
- data.tar.gz: 0699711f61e6b4cda088686fab69a7533da97ae31e69132a434455451da2f1925fbc727e190119f39fda0553069a5a11d65d40943516de1ba3324d6ada50682a
6
+ metadata.gz: cec76f055810b23b62087ccd0bb02228f485f1b61df23d8582fe09eeb6004bb928108d33872a9f6c49882c37dbf819bf00795639944774e27238551d30902e15
7
+ data.tar.gz: de50c719b3f639119dbe6fca26f0ef58940957f3dd80958db40682f51680ccc1f2639d3533c30ec63dad31130be93a8c8b474e1900e3fe431158dfdc8bafaa6c
data/Rakefile CHANGED
@@ -81,10 +81,10 @@ end
81
81
 
82
82
  task :release => :build do
83
83
  sh "git commit --allow-empty -a -m 'Release #{version}'"
84
- sh "git tag #{version}"
85
- sh "git push origin master"
86
- sh "git push origin master --tags"
87
- sh "gem push pkg/#{name}-#{version}.gem"
84
+ sh "git tag #{version}" # create new release tag
85
+ sh "git push origin rails3" # push current branch
86
+ sh "git push origin #{version}" # push the new release tag
87
+ sh "gem push pkg/#{name}-#{version}.gem" # push the gem to RubyGems.org
88
88
  end
89
89
 
90
90
  task :build => :gemspec do
@@ -20,7 +20,7 @@
20
20
  # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
21
21
  # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22
22
 
23
- VERSION = '0.7.8'
23
+ VERSION = '0.7.9'
24
24
 
25
25
  module ActiveRecord #:nodoc:
26
26
  module Acts #:nodoc:
@@ -12,7 +12,7 @@ Gem::Specification.new do |s|
12
12
  ## If your rubyforge_project name is different, then edit it and comment out
13
13
  ## the sub! line in the Rakefile
14
14
  s.name = 'rtiss_acts_as_versioned'
15
- s.version = '0.7.8'
15
+ s.version = '0.7.9'
16
16
  s.date = '2014-11-18'
17
17
  s.rubyforge_project = 'rtiss_acts_as_versioned'
18
18
  s.summary = "Add simple versioning to ActiveRecord models (TISS version)."
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rtiss_acts_as_versioned
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.8
4
+ version: 0.7.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rick Olson