rubysl-weakref 1.0.0 → 2.0.0

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: bb72bf083b54f99efc28398d4551807a26c28b6a
4
- data.tar.gz: a69201f13f3aeb102b312cd7334c21c593b893c6
3
+ metadata.gz: f2959431bdbcdb5359be31db272e2d93a05a17f9
4
+ data.tar.gz: a3cd093c58e01bcdd21e29a536b2d90e0744de79
5
5
  SHA512:
6
- metadata.gz: 5ecf9b2a04a4416394072029b0713f57b63821258f01db111e8023d92a71fb75e338f17de1ead99bb5ac4bc1a302880abd1f69ebf253d556eaab200e10cac7ec
7
- data.tar.gz: bbd7a03737aca5b76040e6cff844f3e1a4c26a31688bef6feabdf38d1764ed00b4c3e18680df709f5a90c79256fb53b2ba778327428f12bfe39694f4fc3a8414
6
+ metadata.gz: 1b2e5067f1e873ebc57de21bcc6db341956840b5740157c102e70a4cf620fbd42fe05c67a5f190bfd5387bb6abddc023e99a21ed7878139d7582e3c66b79fffa
7
+ data.tar.gz: a245d2717ac396b80dda27f1a9693da55fb16bec528db3c76a2071cf751efa5d1d3d0a41600ae2e029fa8e565670ba03a0254e37f4b5f0c0ee7c766212293e1c
data/.gitignore CHANGED
@@ -15,4 +15,3 @@ spec/reports
15
15
  test/tmp
16
16
  test/version_tmp
17
17
  tmp
18
- .rbx
@@ -1,7 +1,6 @@
1
1
  language: ruby
2
2
  env:
3
3
  - RUBYLIB=lib
4
- script: bundle exec mspec
4
+ script: bundle exec mspec spec
5
5
  rvm:
6
- - 1.8.7
7
- - rbx-nightly-18mode
6
+ - rbx-nightly-19mode
data/Gemfile CHANGED
@@ -1,4 +1,4 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- # Specify your gem's dependencies in rubysl-weak_ref.gemspec
3
+ # Specify your gem's dependencies in rubysl-weakref.gemspec
4
4
  gemspec
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # RubySL::WeakRef
1
+ # Rubysl::Weakref
2
2
 
3
3
  TODO: Write a gem description
4
4
 
@@ -6,7 +6,7 @@ TODO: Write a gem description
6
6
 
7
7
  Add this line to your application's Gemfile:
8
8
 
9
- gem 'rubysl-weak_ref'
9
+ gem 'rubysl-weakref'
10
10
 
11
11
  And then execute:
12
12
 
@@ -14,7 +14,7 @@ And then execute:
14
14
 
15
15
  Or install it yourself as:
16
16
 
17
- $ gem install rubysl-weak_ref
17
+ $ gem install rubysl-weakref
18
18
 
19
19
  ## Usage
20
20
 
@@ -24,6 +24,6 @@ TODO: Write usage instructions here
24
24
 
25
25
  1. Fork it
26
26
  2. Create your feature branch (`git checkout -b my-new-feature`)
27
- 3. Commit your changes (`git commit -am 'Added some feature'`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
28
  4. Push to the branch (`git push origin my-new-feature`)
29
29
  5. Create new Pull Request
data/Rakefile CHANGED
@@ -1,2 +1 @@
1
- #!/usr/bin/env rake
2
1
  require "bundler/gem_tasks"
@@ -1,2 +1 @@
1
- require "rubysl/weakref/weakref"
2
1
  require "rubysl/weakref/version"
@@ -1,5 +1,5 @@
1
1
  module RubySL
2
2
  module WeakRef
3
- VERSION = "1.0.0"
3
+ VERSION = "2.0.0"
4
4
  end
5
5
  end
@@ -19,5 +19,4 @@ Gem::Specification.new do |spec|
19
19
  spec.add_development_dependency "bundler", "~> 1.3"
20
20
  spec.add_development_dependency "rake", "~> 10.0"
21
21
  spec.add_development_dependency "mspec", "~> 1.5"
22
- spec.add_development_dependency "rubysl-prettyprint", "~> 1.0"
23
22
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubysl-weakref
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 2.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Shirai
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-09-12 00:00:00.000000000 Z
11
+ date: 2013-09-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -52,20 +52,6 @@ dependencies:
52
52
  - - ~>
53
53
  - !ruby/object:Gem::Version
54
54
  version: '1.5'
55
- - !ruby/object:Gem::Dependency
56
- name: rubysl-prettyprint
57
- requirement: !ruby/object:Gem::Requirement
58
- requirements:
59
- - - ~>
60
- - !ruby/object:Gem::Version
61
- version: '1.0'
62
- type: :development
63
- prerelease: false
64
- version_requirements: !ruby/object:Gem::Requirement
65
- requirements:
66
- - - ~>
67
- - !ruby/object:Gem::Version
68
- version: '1.0'
69
55
  description: Ruby standard library weakref.
70
56
  email:
71
57
  - brixen@gmail.com
@@ -81,7 +67,6 @@ files:
81
67
  - Rakefile
82
68
  - lib/rubysl/weakref.rb
83
69
  - lib/rubysl/weakref/version.rb
84
- - lib/rubysl/weakref/weakref.rb
85
70
  - lib/weakref.rb
86
71
  - rubysl-weakref.gemspec
87
72
  - spec/send_spec.rb
@@ -1,2 +0,0 @@
1
- # This file is a stub. It is here for compatibility with MRI 1.8.7.
2
- # The WeakRef class is always available in Rubinius.