icu_utils 1.2.3 → 1.3.0

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: 360c841a7ff4b7c491bb0a6ab5f43a27015cc219
4
- data.tar.gz: 007588193f481ed9fabf9df9664c67df79911156
3
+ metadata.gz: 7668755e991290df6af596e6c05408034d58c3be
4
+ data.tar.gz: b31cd5a91b2496e222d6bedc0c19d839ef4d74df
5
5
  SHA512:
6
- metadata.gz: 699b54476e607439601f4784fa64206fae93f2bf526ba99b4df77a64779176354a4f5205fd2ada1019948f930fd666c5142902c2ee4902cda459d8c4e5e979eb
7
- data.tar.gz: baa963b833a286d79680ab6ff2f1ab9b3fae69c7fcf03d04677c66a55402820f591809df2b561bd2730ffdae44dc5fb448885fbadd41fb06254f553f103415a8
6
+ metadata.gz: b0f83fbfb64fa0d4bae742a46958f93ff91036ac08186808caedea907cc2192da25bad7ef76f2a5660d61bf50368820e25c9cc875ec0abb68435cc75d6fe1401
7
+ data.tar.gz: 51fa35e87b289129c8204834e147ebeaabb6345f8521d1c643a003fb8015da369b3c8ca44293d210ffab280eb5f1bcf33f38d0caf404740b01e2f8559ce125db
@@ -1,16 +1,14 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- icu_utils (1.2.3)
4
+ icu_utils (1.3.0)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
8
8
  specs:
9
9
  diff-lcs (1.2.5)
10
- json (1.8.2)
11
10
  rake (10.4.2)
12
11
  rdoc (4.2.0)
13
- json (~> 1.4)
14
12
  rspec (3.2.0)
15
13
  rspec-core (~> 3.2.0)
16
14
  rspec-expectations (~> 3.2.0)
data/Rakefile CHANGED
@@ -1,8 +1,28 @@
1
- require 'bundler/gem_tasks'
1
+ require 'rdoc/task'
2
2
  require 'rspec/core/rake_task'
3
+ require File.expand_path(File.dirname(__FILE__) + '/lib/icu_utils/version')
3
4
 
4
5
  task :default => :spec
5
6
 
7
+ version = ICU::Utils::VERSION
8
+
9
+ desc "Build a new gem for version #{version}"
10
+ task :build do
11
+ system "gem build icu_utils.gemspec"
12
+ system "mv {,pkg/}icu_utils-#{version}.gem"
13
+ end
14
+
15
+ desc "Release gem version #{version} to rubygems.org"
16
+ task :release => :build do
17
+ system "gem push pkg/icu_utils-#{version}.gem"
18
+ end
19
+
6
20
  RSpec::Core::RakeTask.new do |t|
7
21
  t.rspec_opts = ['--colour --format doc']
8
22
  end
23
+
24
+ RDoc::Task.new do |rdoc|
25
+ rdoc.title = "ICU Utils #{version}"
26
+ rdoc.main = "README.md"
27
+ rdoc.rdoc_files.include("README.md", "lib/**/*.rb")
28
+ end
@@ -5,7 +5,7 @@ require 'icu_utils/version'
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "icu_utils"
8
- s.version = IcuUtils::VERSION
8
+ s.version = ICU::Utils::VERSION
9
9
  s.authors = ["Mark Orr"]
10
10
  s.email = ["mark.j.l.orr@googlemail.com"]
11
11
  s.description = %q{A place for shared utilities for sharing between the various ICU apps and gems}
@@ -1,3 +1,5 @@
1
- module IcuUtils
2
- VERSION = "1.2.3"
1
+ module ICU
2
+ class Utils
3
+ VERSION = "1.3.0"
4
+ end
3
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: icu_utils
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.3
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mark Orr
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-03-01 00:00:00.000000000 Z
11
+ date: 2015-03-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler