rtiss_acts_as_versioned 0.8.1 → 0.8.2

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: 83d1bf02ac4a4e8fe21f71e9d503a86486f0804e
4
- data.tar.gz: 492102d8c64416677319b3af7d3b30826e309564
3
+ metadata.gz: cac92ff6342270205cab079fb0f7ce7dba50bbd0
4
+ data.tar.gz: 2130ecc8fb34f759ddcf46dcabce01e349903ab8
5
5
  SHA512:
6
- metadata.gz: 40de928a24e5a7d439ab36d87a15a52dba42168b3219460569c0357a7a3012c0a2c400e632beb29be8a8fc9d80e9ac4ac3cc90e7a5aa72743a69e6cdde0e57ff
7
- data.tar.gz: 04b89f39d2de426b2a3c22634f198861b0283d78acfd1a45d7d2210e64bec347a0c1e6696fcc1e40aa3cc5be14735d32952b828b5baad26af1b25a85fcbc260a
6
+ metadata.gz: 860ff36bcf176300a9af52127515c6ee61534a7a6f039c75046d836e6c1624b09c046033756a9f10cd7c0a10802b96ede5bb6f7d6d4765fb0ece1e3c1e11c538
7
+ data.tar.gz: f17c24bc136814c0e84db5a44486add1131a0f87e1d559e6bc9c56c3de694319e8cf703a8294d126f941d755b8754611414e67ea04052f8e2305a74b42ccf707
data/Rakefile CHANGED
@@ -89,9 +89,10 @@ end
89
89
 
90
90
  task :release => :build do
91
91
  sh "git commit --allow-empty -a -m 'Release #{version}'"
92
- sh "git tag #{version}"
93
- sh "git push origin master --tags"
94
- sh "gem push pkg/#{name}-#{version}.gem"
92
+ sh "git tag #{version}" # create new release tag
93
+ sh "git push origin master" # push current branch
94
+ sh "git push origin #{version}" # push the new release tag
95
+ sh "gem push pkg/#{name}-#{version}.gem" # push the gem to RubyGems.org
95
96
  end
96
97
 
97
98
  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.8.1'
23
+ VERSION = '0.8.2'
24
24
 
25
25
  module ActiveRecord #:nodoc:
26
26
  module Acts #:nodoc:
@@ -12,8 +12,8 @@ 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.8.1'
16
- s.date = '2014-10-30'
15
+ s.version = '0.8.2'
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)."
19
19
  s.description = "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.8.1
4
+ version: 0.8.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rick Olson
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2014-10-30 00:00:00.000000000 Z
13
+ date: 2014-11-18 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: activerecord