bijection 0.1.1 → 1.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.
data/README.md CHANGED
@@ -1,3 +1,10 @@
1
+ Change Log
2
+ ==========
3
+
4
+ * v1.0.0 - stable release, no API changes from 0.1.1
5
+ * v0.1.1 - released under the BSD license
6
+ * v0.1.0 - unlicensed
7
+
1
8
  License
2
9
  =======
3
10
 
@@ -7,4 +14,4 @@ Bijection is released under the [BSD license](http://opensource.org/licenses/BSD
7
14
  Documentation
8
15
  =============
9
16
 
10
- Run 'yard' in the root directory after cloning the project.
17
+ [Documentation](http://rubydoc.info/gems/bijection/1.0.0/frames).
@@ -30,7 +30,7 @@
30
30
  # is_nil = b.get_x "returns nil if not found" # is_nil == nil
31
31
  # b.inverse! # X and Y are now swapped; all as above with x and y swapped
32
32
  class Bijection
33
- VERSION = "0.1.1"
33
+ VERSION = "1.0.0"
34
34
 
35
35
  def initialize
36
36
  @X = {} # @X[x] -> y
@@ -1,4 +1,4 @@
1
- require "spec_helper"
1
+ require 'bijection'
2
2
 
3
3
  describe Bijection do
4
4
  before(:each) { @b = Bijection.new }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bijection
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 1.0.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,8 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-12-04 00:00:00.000000000 -05:00
13
- default_executable:
12
+ date: 2012-12-10 00:00:00.000000000 Z
14
13
  dependencies: []
15
14
  description: bijection container in ruby. See example in class Bijection.
16
15
  email:
@@ -29,8 +28,6 @@ files:
29
28
  - bijection.gemspec
30
29
  - lib/bijection.rb
31
30
  - spec/lib/bijection_spec.rb
32
- - spec/spec_helper.rb
33
- has_rdoc: true
34
31
  homepage: https://github.com/ryanberckmans/bijection
35
32
  licenses:
36
33
  - BSD
@@ -52,7 +49,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
52
49
  version: '0'
53
50
  requirements: []
54
51
  rubyforge_project: bijection
55
- rubygems_version: 1.6.2
52
+ rubygems_version: 1.8.24
56
53
  signing_key:
57
54
  specification_version: 3
58
55
  summary: bijection container in ruby
@@ -1,4 +0,0 @@
1
-
2
- # stub
3
-
4
-