coral_cloud 0.1.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/.document ADDED
@@ -0,0 +1,5 @@
1
+ lib/**/*.rb
2
+ bin/*
3
+ -
4
+ features/**/*.feature
5
+ LICENSE.txt
data/Gemfile ADDED
@@ -0,0 +1,10 @@
1
+ source "http://rubygems.org"
2
+
3
+ gem "coral_core", "~> 0.1"
4
+
5
+ group :development do
6
+ gem "bundler", "~> 1.2"
7
+ gem "rspec", "~> 2.10"
8
+ gem "rdoc", "~> 3.12"
9
+ gem "jeweler", "~> 1.8"
10
+ end
data/Gemfile.lock ADDED
@@ -0,0 +1,37 @@
1
+ GEM
2
+ remote: http://rubygems.org/
3
+ specs:
4
+ coral_core (0.1.1)
5
+ git (= 1.2.5)
6
+ json (~> 1.7)
7
+ log4r (~> 1.1)
8
+ diff-lcs (1.1.3)
9
+ git (1.2.5)
10
+ jeweler (1.8.4)
11
+ bundler (~> 1.0)
12
+ git (>= 1.2.5)
13
+ rake
14
+ rdoc
15
+ json (1.7.6)
16
+ log4r (1.1.10)
17
+ rake (10.0.3)
18
+ rdoc (3.12)
19
+ json (~> 1.4)
20
+ rspec (2.12.0)
21
+ rspec-core (~> 2.12.0)
22
+ rspec-expectations (~> 2.12.0)
23
+ rspec-mocks (~> 2.12.0)
24
+ rspec-core (2.12.2)
25
+ rspec-expectations (2.12.1)
26
+ diff-lcs (~> 1.1.3)
27
+ rspec-mocks (2.12.2)
28
+
29
+ PLATFORMS
30
+ ruby
31
+
32
+ DEPENDENCIES
33
+ bundler (~> 1.2)
34
+ coral_core (~> 0.1)
35
+ jeweler (~> 1.8)
36
+ rdoc (~> 3.12)
37
+ rspec (~> 2.10)