striuct 0.3.5 → 0.3.5.1

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 CHANGED
@@ -3,4 +3,12 @@ rvm:
3
3
  - ruby-head
4
4
  - 1.9.3
5
5
  - 1.9.2
6
- - rbx-19mode # Rubinius in 1.9 mode
6
+ - rbx-19mode
7
+ - jruby-head
8
+ - jruby-19mode
9
+
10
+ matrix:
11
+ allow_failures:
12
+ - rvm: rbx-19mode
13
+ - rvm: jruby-head
14
+ - rvm: jruby-19mode
data/.yardopts CHANGED
@@ -1 +1 @@
1
- --readme README.md --protected --private lib/**/*.rb --exclude inner|instancemethods/singleton_class - LICENSE
1
+ --readme README.md --private lib/**/*.rb --exclude inner|instancemethods/singleton_class - LICENSE
data/Gemfile CHANGED
@@ -4,7 +4,6 @@ gemspec
4
4
 
5
5
  group :development do
6
6
  gem 'rake'
7
- gem 'yard', '>=0.8.2.1'
8
7
  end
9
8
 
10
9
  group :test do
data/History.rdoc CHANGED
@@ -1,3 +1,8 @@
1
+ === 0.3.5.1 2012-9-14
2
+
3
+ * Too minor changed :)
4
+ Some doc & env
5
+
1
6
  === 0.3.5 2012-9-9
2
7
 
3
8
  * fix:
data/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  (The MIT X11 License)
2
2
 
3
- Copyright (c) 2011 Kenichi Kamiya
3
+ Copyright (C) 2011 Kenichi Kamiya
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining
6
6
  a copy of this software and associated documentation files (the
data/README.md CHANGED
@@ -93,22 +93,22 @@ foo.with_adjuster = '5'
93
93
  foo.with_adjuster #=> 5 # Casted via adjuster
94
94
  ```
95
95
 
96
- ### How to build a flexible condition
96
+ ### How to build flexible conditions ?
97
97
 
98
98
  * That from validation library.
99
- See the [validation-API](http://kachick.github.com/docs/validation/api/frames.html)
99
+ See the [validation-API](http://kachick.github.com/validation/yard/frames.html)
100
100
 
101
101
  Requirements
102
102
  -------------
103
103
 
104
- * Ruby 1.9.2 or later [MRI/YARV, Rubinius](http://travis-ci.org/#!/kachick/striuct)
104
+ * Ruby - [1.9.2 or later](http://travis-ci.org/#!/kachick/striuct)
105
105
  * [validation](https://github.com/kachick/validation) - 0.0.3
106
106
  * [keyvalidatable](https://github.com/kachick/keyvalidatable) - 0.0.3
107
107
 
108
108
  Install
109
109
  -------
110
110
 
111
- ```shell
111
+ ```bash
112
112
  $ gem install striuct
113
113
  ```
114
114
 
@@ -116,7 +116,8 @@ Link
116
116
  ----
117
117
 
118
118
  * [code](https://github.com/kachick/striuct)
119
- * [API](http://kachick.github.com/docs/striuct/api/frames.html)
119
+ * [wiki](https://github.com/kachick/striuct/wiki)
120
+ * [API](http://kachick.github.com/striuct/yard/frames.html)
120
121
  * [issues](https://github.com/kachick/striuct/issues)
121
122
  * [CI](http://travis-ci.org/#!/kachick/striuct)
122
123
  * [gem](https://rubygems.org/gems/striuct)
@@ -125,6 +126,6 @@ License
125
126
  --------
126
127
 
127
128
  The MIT X11 License
128
- Copyright (c) 2011 Kenichi Kamiya
129
+ Copyright (C) 2011 Kenichi Kamiya
129
130
  See the file LICENSE for further details.
130
131
 
@@ -12,6 +12,7 @@ class Striuct
12
12
  private :new_instance
13
13
 
14
14
  # @param [Symbol, String] autonyms
15
+ # @yieldreturn [Class]
15
16
  # @return [Class]
16
17
  def new(*autonyms, &block)
17
18
  # warning for Ruby's Struct.new user
@@ -34,12 +35,12 @@ class Striuct
34
35
  def define(&block)
35
36
  raise ArgumentError, 'must with block' unless block_given?
36
37
 
37
- new(&block).tap do |subclass|
38
- subclass.instance_eval do
39
- raise 'not yet finished' if autonyms.empty?
38
+ new(&block).tap {|subclass|
39
+ subclass.class_eval do
40
+ raise 'not yet finished' if @autonyms.empty?
40
41
  close
41
42
  end
42
- end
43
+ }
43
44
  end
44
45
 
45
46
  # @groupend
@@ -1,5 +1,5 @@
1
1
  class Striuct
2
2
 
3
- VERSION = '0.3.5'.freeze
3
+ VERSION = '0.3.5.1'.freeze
4
4
 
5
5
  end
data/striuct.gemspec CHANGED
@@ -1,12 +1,10 @@
1
- # I don't know why dose occur errors below.
2
- # require_relative 'lib/striuct/version'
3
1
  require File.expand_path('../lib/striuct/version', __FILE__)
4
2
 
5
3
  Gem::Specification.new do |gem|
6
4
  gem.authors = ['Kenichi Kamiya']
7
5
  gem.email = ['kachick1+ruby@gmail.com']
8
6
  gem.summary = %q{Struct++}
9
- gem.description = %q{validatable, inheritable, And more Struct++ features :)}
7
+ gem.description = %q{Validatable, Inheritable... And more Struct++ features :)}
10
8
  gem.homepage = 'https://github.com/kachick/striuct'
11
9
 
12
10
  gem.files = `git ls-files`.split($\)
@@ -17,8 +15,10 @@ Gem::Specification.new do |gem|
17
15
  gem.version = Striuct::VERSION.dup # dup for https://github.com/rubygems/rubygems/commit/48f1d869510dcd325d6566df7d0147a086905380#-P0
18
16
 
19
17
  gem.required_ruby_version = '>= 1.9.2'
18
+
20
19
  gem.add_runtime_dependency 'validation', '~> 0.0.3'
21
20
  gem.add_runtime_dependency 'keyvalidatable', '~> 0.0.3'
22
- gem.add_development_dependency 'yard', '>= 0.8.2.1'
21
+
22
+ gem.add_development_dependency 'yard', '~> 0.8'
23
23
  end
24
24
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: striuct
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.5
4
+ version: 0.3.5.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-09-09 00:00:00.000000000 Z
12
+ date: 2012-09-13 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: validation
@@ -48,18 +48,18 @@ dependencies:
48
48
  requirement: !ruby/object:Gem::Requirement
49
49
  none: false
50
50
  requirements:
51
- - - ! '>='
51
+ - - ~>
52
52
  - !ruby/object:Gem::Version
53
- version: 0.8.2.1
53
+ version: '0.8'
54
54
  type: :development
55
55
  prerelease: false
56
56
  version_requirements: !ruby/object:Gem::Requirement
57
57
  none: false
58
58
  requirements:
59
- - - ! '>='
59
+ - - ~>
60
60
  - !ruby/object:Gem::Version
61
- version: 0.8.2.1
62
- description: validatable, inheritable, And more Struct++ features :)
61
+ version: '0.8'
62
+ description: Validatable, Inheritable... And more Struct++ features :)
63
63
  email:
64
64
  - kachick1+ruby@gmail.com
65
65
  executables: []