coded_options 0.2.5 → 0.2.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,32 @@
1
+ require File.expand_path("../lib/coded_options/version", __FILE__)
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = "coded_options"
5
+ s.version = CodedOptions::VERSION
6
+ s.platform = Gem::Platform::RUBY
7
+ s.authors = ["Jason Dew"]
8
+ s.email = ["jason.dew@gmail.com"]
9
+ s.homepage = "http://github.com/jasondew/coded_options"
10
+ s.summary = "Making options easier"
11
+ s.description = "A gem for making fields with coded values easier"
12
+
13
+ s.required_rubygems_version = ">= 1.3.6"
14
+
15
+ # lol - required for validation
16
+ s.rubyforge_project = "coded_options"
17
+
18
+ # If you have other dependencies, add them here
19
+ # s.add_dependency "another", "~> 1.2"
20
+
21
+ # If you need to check in files that aren't .rb files, add them here
22
+ s.files = Dir["{lib}/**/*.rb", "bin/*", "LICENSE", "*.md", "Gemfile", "Rakefile", ".gemtest", "coded_options.gemspec"]
23
+ s.require_path = 'lib'
24
+
25
+ # If you need an executable, add it here
26
+ # s.executables = ["coded_options"]
27
+
28
+ # If you have C extensions, uncomment this line
29
+ # s.extensions = "ext/extconf.rb"
30
+
31
+ s.add_bundler_dependencies
32
+ end
@@ -1,3 +1,3 @@
1
1
  module CodedOptions
2
- VERSION = "0.2.5"
2
+ VERSION = "0.2.6"
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: coded_options
3
3
  version: !ruby/object:Gem::Version
4
- hash: 29
4
+ hash: 27
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 2
9
- - 5
10
- version: 0.2.5
9
+ - 6
10
+ version: 0.2.6
11
11
  platform: ruby
12
12
  authors:
13
13
  - Jason Dew
@@ -83,6 +83,7 @@ files:
83
83
  - Gemfile
84
84
  - Rakefile
85
85
  - .gemtest
86
+ - coded_options.gemspec
86
87
  has_rdoc: true
87
88
  homepage: http://github.com/jasondew/coded_options
88
89
  licenses: []