kalibro_gatekeeper_client 0.2.0.alpha → 0.2.0
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.
- checksums.yaml +4 -4
- data/.travis.yml +17 -2
- data/features/metric_result/history_of.feature +1 -1
- data/features/metric_result/metric_results_of.feature +1 -1
- data/features/module_result/children.feature +1 -1
- data/features/module_result/find.feature +11 -4
- data/features/module_result/history_of.feature +1 -1
- data/features/processing/first_processing_after.feature +2 -2
- data/features/processing/first_processing_of.feature +2 -2
- data/features/processing/has_processing.feature +2 -2
- data/features/processing/has_processing_after.feature +2 -2
- data/features/processing/has_processing_before.feature +2 -2
- data/features/processing/has_ready_processing.feature +2 -2
- data/features/processing/last_processing_before.feature +2 -2
- data/features/processing/last_processing_of.feature +2 -2
- data/features/processing/last_processing_state_of.feature +2 -2
- data/features/processing/last_ready_processing_of.feature +2 -2
- data/features/processing/processing_of.feature +4 -4
- data/features/processing/processing_with_date_of.feature +4 -4
- data/features/repository/all.feature +1 -1
- data/features/repository/cancel_processing.feature +1 -1
- data/features/repository/exists.feature +1 -1
- data/features/repository/find.feature +1 -1
- data/features/repository/of.feature +1 -1
- data/features/repository/process.feature +2 -2
- data/features/step_definitions/metric_configuration_steps.rb +4 -2
- data/features/step_definitions/module_result_steps.rb +4 -0
- data/lib/kalibro_gatekeeper_client/version.rb +1 -1
- data/spec/entities/model_spec.rb +12 -2
- data/spec/factories/metric_configurations.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ab0e4a166eae87dc9598bc80e6c980efb7873a79
|
4
|
+
data.tar.gz: 4a76de5a159d066a3ad56702a1f6f7f6917191fb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c53cac33dc4cdd44e8bac58c9ae6a7fa8c01d1efc03f046898a88e47dcba50f05086d04ecd264a14d2e168435e75d4dd021c15bb57959f098d84d525ede95ab4
|
7
|
+
data.tar.gz: 3c7d8523c31c81d2ec5b764ea3934e924cc6a86c6234e96e7c95ffb730b74636d962f581a90868cb23d5fccb893174abcf94a1b064f49344c4fe3a626c4729ae
|
data/.travis.yml
CHANGED
@@ -10,12 +10,27 @@ before_script:
|
|
10
10
|
- bash install.sh
|
11
11
|
- popd
|
12
12
|
- cp features/support/kalibro_cucumber_helpers.yml.sample features/support/kalibro_cucumber_helpers.yml
|
13
|
-
|
13
|
+
# Gatekeeper
|
14
|
+
- git clone https://github.com/mezuro/kalibro_gatekeeper.git -b v0.1.0 kalibro_gatekeeper
|
14
15
|
- cd kalibro_gatekeeper
|
15
16
|
- cp config/database.yml.sample config/database.yml
|
17
|
+
- cp config/kalibro_processor.yml.sample config/kalibro_processor.yml
|
16
18
|
- export BUNDLE_GEMFILE=$PWD/Gemfile
|
17
19
|
- bundle install
|
18
|
-
- bundle exec rails s -p 8081 -d
|
20
|
+
- RAILS_ENV=local bundle exec rails s -p 8081 -d
|
21
|
+
- cd ..
|
22
|
+
- export BUNDLE_GEMFILE=$PWD/Gemfile
|
23
|
+
# Processor
|
24
|
+
- git clone https://github.com/mezuro/kalibro_processor.git -b v0.0.1 kalibro_processor
|
25
|
+
- cd kalibro_processor
|
26
|
+
- psql -c "create role kalibro_processor with createdb login password 'kalibro_processor'" -U postgres
|
27
|
+
- cp config/database.yml.postgresql_sample config/database.yml
|
28
|
+
- cp config/repositories.yml.sample config/repositories.yml
|
29
|
+
- export BUNDLE_GEMFILE=$PWD/Gemfile
|
30
|
+
- bundle install
|
31
|
+
- bundle exec rake db:setup db:migrate
|
32
|
+
- bundle exec rails s -p 8082 -d
|
33
|
+
- bundle exec bin/delayed_job start
|
19
34
|
- cd ..
|
20
35
|
- export BUNDLE_GEMFILE=$PWD/Gemfile
|
21
36
|
|
@@ -9,7 +9,7 @@ Feature: history of
|
|
9
9
|
And I have a configuration with name "Java"
|
10
10
|
And I have a reading group with name "Group"
|
11
11
|
And I have a metric with name "Lines of Code"
|
12
|
-
And I have a
|
12
|
+
And I have a loc configuration within the given configuration
|
13
13
|
And the given project has the following Repositories:
|
14
14
|
| name | type | address |
|
15
15
|
| SBKing | GIT | https://git.gitorious.org/sbking/sbking.git |
|
@@ -8,7 +8,7 @@ Feature: Metric results of
|
|
8
8
|
Given I have a project with name "Kalibro"
|
9
9
|
And I have a configuration with name "Java"
|
10
10
|
And I have a reading group with name "Group"
|
11
|
-
And I have a
|
11
|
+
And I have a loc configuration within the given configuration
|
12
12
|
And the given project has the following Repositories:
|
13
13
|
| name | type | address |
|
14
14
|
| SBKing | GIT | https://git.gitorious.org/sbking/sbking.git |
|
@@ -8,7 +8,7 @@ Feature: Children
|
|
8
8
|
Given I have a project with name "Kalibro"
|
9
9
|
And I have a configuration with name "Java"
|
10
10
|
And I have a reading group with name "Group"
|
11
|
-
And I have a
|
11
|
+
And I have a loc configuration within the given configuration
|
12
12
|
And the given project has the following Repositories:
|
13
13
|
| name | type | address |
|
14
14
|
| Kalibro | GIT | https://git.gitorious.org/sbking/sbking.git |
|
@@ -3,12 +3,19 @@ Feature: Find
|
|
3
3
|
As an developer
|
4
4
|
I want to find module results
|
5
5
|
|
6
|
-
@wip
|
7
6
|
@kalibro_restart
|
8
7
|
Scenario: find a valid module result
|
9
|
-
Given I have a
|
10
|
-
|
11
|
-
|
8
|
+
Given I have a project with name "Kalibro"
|
9
|
+
And I have a configuration with name "Java"
|
10
|
+
And I have a reading group with name "Group"
|
11
|
+
And I have a loc configuration within the given configuration
|
12
|
+
And the given project has the following Repositories:
|
13
|
+
| name | type | address |
|
14
|
+
| Kalibro | GIT | https://git.gitorious.org/sbking/sbking.git |
|
15
|
+
When I call the process method for the given repository
|
16
|
+
And I wait up for a ready processing
|
17
|
+
And I get the module result of the processing
|
18
|
+
Then I should get a module_result
|
12
19
|
|
13
20
|
Scenario: get a module result by inexistent name
|
14
21
|
When I ask for an inexistent module result
|
@@ -8,7 +8,7 @@ Feature: /history of
|
|
8
8
|
Given I have a project with name "Kalibro"
|
9
9
|
And I have a configuration with name "Java"
|
10
10
|
And I have a reading group with name "Group"
|
11
|
-
And I have a
|
11
|
+
And I have a loc configuration within the given configuration
|
12
12
|
And the given project has the following Repositories:
|
13
13
|
| name | type | address |
|
14
14
|
| Kalibro | GIT | https://git.gitorious.org/sbking/sbking.git |
|
@@ -8,10 +8,10 @@ Feature: First processing after
|
|
8
8
|
Given I have a project with name "Kalibro"
|
9
9
|
And I have a configuration with name "Java"
|
10
10
|
And I have a reading group with name "Group"
|
11
|
-
And I have a
|
11
|
+
And I have a loc configuration within the given configuration
|
12
12
|
And the given project has the following Repositories:
|
13
13
|
| name | type | address |
|
14
|
-
| Kalibro | GIT | https://
|
14
|
+
| Kalibro | GIT | https://git.gitorious.org/sbking/sbking.git |
|
15
15
|
And I call the process method for the given repository
|
16
16
|
And I wait up to 1 seconds
|
17
17
|
When I call the first_processing_after method for the given repository and yesterday's date
|
@@ -8,10 +8,10 @@ Feature: First processing of
|
|
8
8
|
Given I have a project with name "Kalibro"
|
9
9
|
And I have a configuration with name "Java"
|
10
10
|
And I have a reading group with name "Group"
|
11
|
-
And I have a
|
11
|
+
And I have a loc configuration within the given configuration
|
12
12
|
And the given project has the following Repositories:
|
13
13
|
| name | type | address |
|
14
|
-
| Kalibro | GIT | https://
|
14
|
+
| Kalibro | GIT | https://git.gitorious.org/sbking/sbking.git |
|
15
15
|
And I call the process method for the given repository
|
16
16
|
And I wait up to 1 seconds
|
17
17
|
When I call the first_processing_of method for the given repository
|
@@ -8,10 +8,10 @@ Feature: Has processing
|
|
8
8
|
Given I have a project with name "Kalibro"
|
9
9
|
And I have a configuration with name "Java"
|
10
10
|
And I have a reading group with name "Group"
|
11
|
-
And I have a
|
11
|
+
And I have a loc configuration within the given configuration
|
12
12
|
And the given project has the following Repositories:
|
13
13
|
| name | type | address |
|
14
|
-
| Kalibro | GIT | https://
|
14
|
+
| Kalibro | GIT | https://git.gitorious.org/sbking/sbking.git |
|
15
15
|
And I call the process method for the given repository
|
16
16
|
And I wait up to 1 seconds
|
17
17
|
When I call the has_processing for the given repository
|
@@ -8,10 +8,10 @@ Feature: Has processing after
|
|
8
8
|
Given I have a project with name "Kalibro"
|
9
9
|
And I have a configuration with name "Java"
|
10
10
|
And I have a reading group with name "Group"
|
11
|
-
And I have a
|
11
|
+
And I have a loc configuration within the given configuration
|
12
12
|
And the given project has the following Repositories:
|
13
13
|
| name | type | address |
|
14
|
-
| Kalibro | GIT | https://
|
14
|
+
| Kalibro | GIT | https://git.gitorious.org/sbking/sbking.git |
|
15
15
|
And I call the process method for the given repository
|
16
16
|
And I wait up to 1 seconds
|
17
17
|
When I call the has_processing_after for the given repository with yerterday's date
|
@@ -8,10 +8,10 @@ Feature: Has processing before
|
|
8
8
|
Given I have a project with name "Kalibro"
|
9
9
|
And I have a configuration with name "Java"
|
10
10
|
And I have a reading group with name "Group"
|
11
|
-
And I have a
|
11
|
+
And I have a loc configuration within the given configuration
|
12
12
|
And the given project has the following Repositories:
|
13
13
|
| name | type | address |
|
14
|
-
| Kalibro | GIT | https://
|
14
|
+
| Kalibro | GIT | https://git.gitorious.org/sbking/sbking.git |
|
15
15
|
And I call the process method for the given repository
|
16
16
|
And I wait up to 1 seconds
|
17
17
|
When I call the has_processing_before for the given repository with tomorrows's date
|
@@ -8,10 +8,10 @@ Feature: Has ready processing
|
|
8
8
|
Given I have a project with name "Kalibro"
|
9
9
|
And I have a configuration with name "Java"
|
10
10
|
And I have a reading group with name "Group"
|
11
|
-
And I have a
|
11
|
+
And I have a loc configuration within the given configuration
|
12
12
|
And the given project has the following Repositories:
|
13
13
|
| name | type | address |
|
14
|
-
| Kalibro | GIT | https://
|
14
|
+
| Kalibro | GIT | https://git.gitorious.org/sbking/sbking.git |
|
15
15
|
And I call the process method for the given repository
|
16
16
|
And I wait up to 1 seconds
|
17
17
|
When I call the has_ready_processing for the given repository
|
@@ -8,10 +8,10 @@ Feature: Last processing before
|
|
8
8
|
Given I have a project with name "Kalibro"
|
9
9
|
And I have a configuration with name "Java"
|
10
10
|
And I have a reading group with name "Group"
|
11
|
-
And I have a
|
11
|
+
And I have a loc configuration within the given configuration
|
12
12
|
And the given project has the following Repositories:
|
13
13
|
| name | type | address |
|
14
|
-
| Kalibro | GIT | https://
|
14
|
+
| Kalibro | GIT | https://git.gitorious.org/sbking/sbking.git |
|
15
15
|
And I call the process method for the given repository
|
16
16
|
And I wait up to 1 seconds
|
17
17
|
When I call the last_processing_before method for the given repository and tomorrow's date
|
@@ -8,10 +8,10 @@ Feature: Last processing of
|
|
8
8
|
Given I have a project with name "Kalibro"
|
9
9
|
And I have a configuration with name "Java"
|
10
10
|
And I have a reading group with name "Group"
|
11
|
-
And I have a
|
11
|
+
And I have a loc configuration within the given configuration
|
12
12
|
And the given project has the following Repositories:
|
13
13
|
| name | type | address |
|
14
|
-
| Kalibro | GIT | https://
|
14
|
+
| Kalibro | GIT | https://git.gitorious.org/sbking/sbking.git |
|
15
15
|
And I call the process method for the given repository
|
16
16
|
And I wait up to 1 seconds
|
17
17
|
When I call the last_processing_of method for the given repository
|
@@ -8,10 +8,10 @@ Feature: Last processing state of
|
|
8
8
|
Given I have a project with name "Kalibro"
|
9
9
|
And I have a configuration with name "Java"
|
10
10
|
And I have a reading group with name "Group"
|
11
|
-
And I have a
|
11
|
+
And I have a loc configuration within the given configuration
|
12
12
|
And the given project has the following Repositories:
|
13
13
|
| name | type | address |
|
14
|
-
| Kalibro | GIT | https://
|
14
|
+
| Kalibro | GIT | https://git.gitorious.org/sbking/sbking.git |
|
15
15
|
And I call the process method for the given repository
|
16
16
|
And I wait up to 1 seconds
|
17
17
|
When I call the last_processing_state_of method for the given repository
|
@@ -8,10 +8,10 @@ Feature: Last ready processing of
|
|
8
8
|
Given I have a project with name "Kalibro"
|
9
9
|
And I have a configuration with name "Java"
|
10
10
|
And I have a reading group with name "Group"
|
11
|
-
And I have a
|
11
|
+
And I have a loc configuration within the given configuration
|
12
12
|
And the given project has the following Repositories:
|
13
13
|
| name | type | address |
|
14
|
-
| Kalibro | GIT | https://
|
14
|
+
| Kalibro | GIT | https://git.gitorious.org/sbking/sbking.git |
|
15
15
|
And I call the process method for the given repository
|
16
16
|
And I wait up for a ready processing
|
17
17
|
When I call the last_ready_processing_of method for the given repository
|
@@ -8,10 +8,10 @@ Feature: Processing of
|
|
8
8
|
Given I have a project with name "Kalibro"
|
9
9
|
And I have a configuration with name "Java"
|
10
10
|
And I have a reading group with name "Group"
|
11
|
-
And I have a
|
11
|
+
And I have a loc configuration within the given configuration
|
12
12
|
And the given project has the following Repositories:
|
13
13
|
| name | type | address |
|
14
|
-
| Kalibro | GIT | https://
|
14
|
+
| Kalibro | GIT | https://git.gitorious.org/sbking/sbking.git |
|
15
15
|
And I call the process method for the given repository
|
16
16
|
And I wait up to 1 seconds
|
17
17
|
When I call the processing_of method for the given repository
|
@@ -22,10 +22,10 @@ Feature: Processing of
|
|
22
22
|
Given I have a project with name "Kalibro"
|
23
23
|
And I have a configuration with name "Java"
|
24
24
|
And I have a reading group with name "Group"
|
25
|
-
And I have a
|
25
|
+
And I have a loc configuration within the given configuration
|
26
26
|
And the given project has the following Repositories:
|
27
27
|
| name | type | address |
|
28
|
-
| Kalibro | GIT | https://
|
28
|
+
| Kalibro | GIT | https://git.gitorious.org/sbking/sbking.git |
|
29
29
|
And I call the process method for the given repository
|
30
30
|
And I wait up for a ready processing
|
31
31
|
When I call the processing_of method for the given repository
|
@@ -8,10 +8,10 @@ Feature: Processing with date of
|
|
8
8
|
Given I have a project with name "Kalibro"
|
9
9
|
And I have a configuration with name "Java"
|
10
10
|
And I have a reading group with name "Group"
|
11
|
-
And I have a
|
11
|
+
And I have a loc configuration within the given configuration
|
12
12
|
And the given project has the following Repositories:
|
13
13
|
| name | type | address |
|
14
|
-
| Kalibro | GIT | https://
|
14
|
+
| Kalibro | GIT | https://git.gitorious.org/sbking/sbking.git |
|
15
15
|
And I call the process method for the given repository
|
16
16
|
And I wait up to 1 seconds
|
17
17
|
When I call the processing_with_date_of method for the given repository and tomorrow's date
|
@@ -22,10 +22,10 @@ Feature: Processing with date of
|
|
22
22
|
Given I have a project with name "Kalibro"
|
23
23
|
And I have a configuration with name "Java"
|
24
24
|
And I have a reading group with name "Group"
|
25
|
-
And I have a
|
25
|
+
And I have a loc configuration within the given configuration
|
26
26
|
And the given project has the following Repositories:
|
27
27
|
| name | type | address |
|
28
|
-
| Kalibro | GIT | https://
|
28
|
+
| Kalibro | GIT | https://git.gitorious.org/sbking/sbking.git |
|
29
29
|
And I call the process method for the given repository
|
30
30
|
And I wait up to 1 seconds
|
31
31
|
When I call the processing_with_date_of method for the given repository and yesterday's date
|
@@ -9,6 +9,6 @@ Feature: Repositories listing
|
|
9
9
|
And I have a configuration with name "Java"
|
10
10
|
And the given project has the following Repositories:
|
11
11
|
| name | type | address |
|
12
|
-
| "Kalibro" | GIT | https://
|
12
|
+
| "Kalibro" | GIT | https://git.gitorious.org/sbking/sbking.git |
|
13
13
|
When I ask for all the repositories
|
14
14
|
Then the response should contain the given repository
|
@@ -9,6 +9,6 @@ Feature: Process
|
|
9
9
|
And I have a configuration with name "Java"
|
10
10
|
And the given project has the following Repositories:
|
11
11
|
| name | type | address |
|
12
|
-
| "Kalibro" | GIT | https://
|
12
|
+
| "Kalibro" | GIT | https://git.gitorious.org/sbking/sbking.git |
|
13
13
|
When I call the cancel_process method for the given repository
|
14
14
|
Then I should get success
|
@@ -9,6 +9,6 @@ Feature: Repositories listing
|
|
9
9
|
And I have a configuration with name "Java"
|
10
10
|
And the given project has the following Repositories:
|
11
11
|
| name | type | address |
|
12
|
-
| "Kalibro" | GIT | https://
|
12
|
+
| "Kalibro" | GIT | https://git.gitorious.org/sbking/sbking.git |
|
13
13
|
When I ask to check if the given repository exists
|
14
14
|
Then I should get true
|
@@ -9,6 +9,6 @@ Feature: Repositories listing
|
|
9
9
|
And I have a configuration with name "Java"
|
10
10
|
And the given project has the following Repositories:
|
11
11
|
| name | type | address |
|
12
|
-
| "Kalibro" | GIT | https://
|
12
|
+
| "Kalibro" | GIT | https://git.gitorious.org/sbking/sbking.git |
|
13
13
|
When I ask to find the given repository
|
14
14
|
Then I should get the given repository
|
@@ -9,7 +9,7 @@ Feature: Repositories listing
|
|
9
9
|
And I have a configuration with name "Java"
|
10
10
|
And the given project has the following Repositories:
|
11
11
|
| name | type | address |
|
12
|
-
| "Kalibro" | GIT | https://
|
12
|
+
| "Kalibro" | GIT | https://git.gitorious.org/sbking/sbking.git |
|
13
13
|
When I ask for repositories from the given project
|
14
14
|
Then I should get a list with the given repository
|
15
15
|
And the repositories should contain the project id
|
@@ -8,9 +8,9 @@ Feature: Process
|
|
8
8
|
Given I have a project with name "Kalibro"
|
9
9
|
And I have a configuration with name "Java"
|
10
10
|
And I have a reading group with name "Group"
|
11
|
-
And I have a
|
11
|
+
And I have a loc configuration within the given configuration
|
12
12
|
And the given project has the following Repositories:
|
13
13
|
| name | type | address |
|
14
|
-
| Kalibro | GIT | https://
|
14
|
+
| Kalibro | GIT | https://git.gitorious.org/sbking/sbking.git |
|
15
15
|
When I call the process method for the given repository
|
16
16
|
Then I should get success
|
@@ -10,7 +10,8 @@ Given(/^I have a metric configuration within the given configuration with the gi
|
|
10
10
|
{id: nil,
|
11
11
|
metric: @metric,
|
12
12
|
reading_group_id: @reading_group.id,
|
13
|
-
configuration_id: @configuration.id
|
13
|
+
configuration_id: @configuration.id,
|
14
|
+
code: "loc"})
|
14
15
|
end
|
15
16
|
|
16
17
|
Given(/^I have a loc configuration within the given configuration$/) do
|
@@ -18,7 +19,8 @@ Given(/^I have a loc configuration within the given configuration$/) do
|
|
18
19
|
{id: nil,
|
19
20
|
metric: FactoryGirl.create(:loc),
|
20
21
|
reading_group_id: @reading_group.id,
|
21
|
-
configuration_id: @configuration.id
|
22
|
+
configuration_id: @configuration.id,
|
23
|
+
code: "loc"})
|
22
24
|
end
|
23
25
|
|
24
26
|
When(/^I search a metric configuration with the same id of the given metric configuration$/) do
|
data/spec/entities/model_spec.rb
CHANGED
@@ -54,12 +54,22 @@ describe KalibroGatekeeperClient::Entities::Model do
|
|
54
54
|
let(:fixture) { File.read("spec/savon/fixtures/project/does_not_exists.xml") }
|
55
55
|
let(:client) { mock('client') }
|
56
56
|
let(:response) { mock('response') }
|
57
|
+
let(:request) { mock('request') }
|
58
|
+
let(:options) { mock('options') }
|
59
|
+
|
60
|
+
before :each do
|
61
|
+
options.expects(:timeout=)
|
62
|
+
options.expects(:open_timeout=)
|
63
|
+
request.expects(:url).with('/models/exists')
|
64
|
+
request.expects(:body=).with({id: 1})
|
65
|
+
request.expects(:options).twice.returns(options)
|
66
|
+
end
|
57
67
|
|
58
68
|
context 'for the KalibroGatekeeperClient::Entitie class' do
|
59
69
|
it 'should successfully get the Kalibro version' do
|
60
70
|
response.expects(:body).returns({exists: false})
|
61
71
|
client.expects(:post).
|
62
|
-
|
72
|
+
yields(request).
|
63
73
|
returns(response)
|
64
74
|
KalibroGatekeeperClient::Entities::Model.
|
65
75
|
expects(:client).
|
@@ -76,7 +86,7 @@ describe KalibroGatekeeperClient::Entities::Model do
|
|
76
86
|
it 'should successfully get the Kalibro version' do
|
77
87
|
response.expects(:body).returns({exists: false})
|
78
88
|
client.expects(:post).
|
79
|
-
|
89
|
+
yields(request).
|
80
90
|
returns(response)
|
81
91
|
Child.
|
82
92
|
expects(:client).
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kalibro_gatekeeper_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.0
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Diego Araújo Martinez
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date: 2014-
|
14
|
+
date: 2014-08-04 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: bundler
|
@@ -344,9 +344,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
344
344
|
version: '0'
|
345
345
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
346
346
|
requirements:
|
347
|
-
- - "
|
347
|
+
- - ">="
|
348
348
|
- !ruby/object:Gem::Version
|
349
|
-
version:
|
349
|
+
version: '0'
|
350
350
|
requirements: []
|
351
351
|
rubyforge_project:
|
352
352
|
rubygems_version: 2.2.2
|