coral_core 0.1.2 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/Gemfile +1 -1
  2. data/Gemfile.lock +3 -3
  3. data/VERSION +1 -1
  4. data/coral_core.gemspec +90 -0
  5. metadata +9 -8
data/Gemfile CHANGED
@@ -1,7 +1,7 @@
1
1
  source "http://rubygems.org"
2
2
 
3
3
  gem "git", "= 1.2.5"
4
- gem "json", "~> 1.7"
4
+ gem "json", ">= 1.4"
5
5
  gem "log4r", "~> 1.1"
6
6
 
7
7
  group :development do
data/Gemfile.lock CHANGED
@@ -11,7 +11,7 @@ GEM
11
11
  json (1.7.6)
12
12
  log4r (1.1.10)
13
13
  rake (10.0.3)
14
- rdoc (3.12)
14
+ rdoc (3.12.1)
15
15
  json (~> 1.4)
16
16
  rspec (2.12.0)
17
17
  rspec-core (~> 2.12.0)
@@ -21,7 +21,7 @@ GEM
21
21
  rspec-expectations (2.12.1)
22
22
  diff-lcs (~> 1.1.3)
23
23
  rspec-mocks (2.12.2)
24
- yard (0.8.3)
24
+ yard (0.8.4.1)
25
25
 
26
26
  PLATFORMS
27
27
  ruby
@@ -30,7 +30,7 @@ DEPENDENCIES
30
30
  bundler (~> 1.2)
31
31
  git (= 1.2.5)
32
32
  jeweler (~> 1.8)
33
- json (~> 1.7)
33
+ json (>= 1.4)
34
34
  log4r (~> 1.1)
35
35
  rdoc (~> 3.12)
36
36
  rspec (~> 2.10)
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.2
1
+ 0.1.4
@@ -0,0 +1,90 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = "coral_core"
8
+ s.version = "0.1.4"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Adrian Webb"]
12
+ s.date = "2013-02-08"
13
+ s.description = "= coral_core\n\nThis library provides core data elements and utilities used in other Coral gems.\n\nThe Coral core library contains functionality that is utilized by other\nCoral gems by providing basic utilities like Git, Shell, Disk, and Data\nmanipulation libraries, a UI system, and a core data model that supports\nEvents, Commands, Repositories, and Memory (version controlled JSON \nobjects). This library is only used as a starting point for other systems.\n\nNote: This library is still very early in development!\n\n== Contributing to coral_core\n \n* Check out the latest master to make sure the feature hasn't been implemented \n or the bug hasn't been fixed yet.\n* Check out the issue tracker to make sure someone already hasn't requested \n it and/or contributed it.\n* Fork the project.\n* Start a feature/bugfix branch.\n* Commit and push until you are happy with your contribution.\n* Make sure to add tests for it. This is important so I don't break it in a \n future version unintentionally.\n* Please try not to mess with the Rakefile, version, or history. If you want \n to have your own version, or is otherwise necessary, that is fine, but \n please isolate to its own commit so I can cherry-pick around it.\n\n== Copyright\n\nLicensed under GPLv3. See LICENSE.txt for further details.\n\nCopyright (c) 2013 Adrian Webb <adrian.webb@coraltech.net>\nCoral Technology Group LLC"
14
+ s.email = "adrian.webb@coraltech.net"
15
+ s.extra_rdoc_files = [
16
+ "LICENSE.txt",
17
+ "README.rdoc"
18
+ ]
19
+ s.files = [
20
+ ".document",
21
+ "Gemfile",
22
+ "Gemfile.lock",
23
+ "LICENSE.txt",
24
+ "README.rdoc",
25
+ "Rakefile",
26
+ "VERSION",
27
+ "coral_core.gemspec",
28
+ "lib/coral_core.rb",
29
+ "lib/coral_core/command.rb",
30
+ "lib/coral_core/core.rb",
31
+ "lib/coral_core/event.rb",
32
+ "lib/coral_core/event/regexp_event.rb",
33
+ "lib/coral_core/interface.rb",
34
+ "lib/coral_core/memory.rb",
35
+ "lib/coral_core/repository.rb",
36
+ "lib/coral_core/util/data.rb",
37
+ "lib/coral_core/util/disk.rb",
38
+ "lib/coral_core/util/git.rb",
39
+ "lib/coral_core/util/git/base.rb",
40
+ "lib/coral_core/util/git/lib.rb",
41
+ "lib/coral_core/util/git/remote.rb",
42
+ "lib/coral_core/util/shell.rb",
43
+ "spec/coral_core/interface_spec.rb",
44
+ "spec/coral_mock_input.rb",
45
+ "spec/coral_test_kernel.rb",
46
+ "spec/spec_helper.rb"
47
+ ]
48
+ s.homepage = "http://github.com/coraltech/ruby-coral_core"
49
+ s.licenses = ["GPLv3"]
50
+ s.rdoc_options = ["--title", "Coral Core library", "--main", "README.rdoc", "--line-numbers"]
51
+ s.require_paths = ["lib"]
52
+ s.required_ruby_version = Gem::Requirement.new(">= 1.8.1")
53
+ s.rubyforge_project = "coral_core"
54
+ s.rubygems_version = "1.8.15"
55
+ s.summary = "Provides core data elements and utilities used in other Coral gems"
56
+
57
+ if s.respond_to? :specification_version then
58
+ s.specification_version = 3
59
+
60
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
61
+ s.add_runtime_dependency(%q<git>, ["= 1.2.5"])
62
+ s.add_runtime_dependency(%q<json>, [">= 1.4"])
63
+ s.add_runtime_dependency(%q<log4r>, ["~> 1.1"])
64
+ s.add_development_dependency(%q<bundler>, ["~> 1.2"])
65
+ s.add_development_dependency(%q<jeweler>, ["~> 1.8"])
66
+ s.add_development_dependency(%q<rspec>, ["~> 2.10"])
67
+ s.add_development_dependency(%q<rdoc>, ["~> 3.12"])
68
+ s.add_development_dependency(%q<yard>, ["~> 0.8"])
69
+ else
70
+ s.add_dependency(%q<git>, ["= 1.2.5"])
71
+ s.add_dependency(%q<json>, [">= 1.4"])
72
+ s.add_dependency(%q<log4r>, ["~> 1.1"])
73
+ s.add_dependency(%q<bundler>, ["~> 1.2"])
74
+ s.add_dependency(%q<jeweler>, ["~> 1.8"])
75
+ s.add_dependency(%q<rspec>, ["~> 2.10"])
76
+ s.add_dependency(%q<rdoc>, ["~> 3.12"])
77
+ s.add_dependency(%q<yard>, ["~> 0.8"])
78
+ end
79
+ else
80
+ s.add_dependency(%q<git>, ["= 1.2.5"])
81
+ s.add_dependency(%q<json>, [">= 1.4"])
82
+ s.add_dependency(%q<log4r>, ["~> 1.1"])
83
+ s.add_dependency(%q<bundler>, ["~> 1.2"])
84
+ s.add_dependency(%q<jeweler>, ["~> 1.8"])
85
+ s.add_dependency(%q<rspec>, ["~> 2.10"])
86
+ s.add_dependency(%q<rdoc>, ["~> 3.12"])
87
+ s.add_dependency(%q<yard>, ["~> 0.8"])
88
+ end
89
+ end
90
+
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: coral_core
3
3
  version: !ruby/object:Gem::Version
4
- hash: 31
4
+ hash: 19
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 2
10
- version: 0.1.2
9
+ - 4
10
+ version: 0.1.4
11
11
  platform: ruby
12
12
  authors:
13
13
  - Adrian Webb
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2013-02-07 00:00:00 Z
18
+ date: 2013-02-08 00:00:00 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: git
@@ -39,13 +39,13 @@ dependencies:
39
39
  requirement: &id002 !ruby/object:Gem::Requirement
40
40
  none: false
41
41
  requirements:
42
- - - ~>
42
+ - - ">="
43
43
  - !ruby/object:Gem::Version
44
- hash: 1
44
+ hash: 7
45
45
  segments:
46
46
  - 1
47
- - 7
48
- version: "1.7"
47
+ - 4
48
+ version: "1.4"
49
49
  type: :runtime
50
50
  version_requirements: *id002
51
51
  - !ruby/object:Gem::Dependency
@@ -188,6 +188,7 @@ files:
188
188
  - README.rdoc
189
189
  - Rakefile
190
190
  - VERSION
191
+ - coral_core.gemspec
191
192
  - lib/coral_core.rb
192
193
  - lib/coral_core/command.rb
193
194
  - lib/coral_core/core.rb