Skip to content
Snippets Groups Projects
Commit 9c4393fb authored by Ando Emerencia's avatar Ando Emerencia Committed by GitHub
Browse files

Merge pull request #19 from roqua/fb-update-ruby-1

Update to rails 2.3.3
parents 18b51de2 c9c9929b
Branches
Tags
No related merge requests found
Showing
with 46 additions and 28 deletions
# frozen_string_literal: true
source 'https://rubygems.org'
gemspec
......
......@@ -9,24 +9,24 @@ PATH
GEM
remote: https://rubygems.org/
specs:
actionpack (5.0.0.1)
actionview (= 5.0.0.1)
activesupport (= 5.0.0.1)
actionpack (5.0.1)
actionview (= 5.0.1)
activesupport (= 5.0.1)
rack (~> 2.0)
rack-test (~> 0.6.3)
rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.0, >= 1.0.2)
actionview (5.0.0.1)
activesupport (= 5.0.0.1)
actionview (5.0.1)
activesupport (= 5.0.1)
builder (~> 3.1)
erubis (~> 2.7.0)
rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.0, >= 1.0.2)
active_interaction (3.4.0)
activemodel (>= 4, < 6)
activemodel (5.0.0.1)
activesupport (= 5.0.0.1)
activesupport (5.0.0.1)
activemodel (5.0.1)
activesupport (= 5.0.1)
activesupport (5.0.1)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (~> 0.7)
minitest (~> 5.1)
......@@ -39,16 +39,16 @@ GEM
builder (3.2.2)
coercible (1.0.0)
descendants_tracker (~> 0.0.1)
concurrent-ruby (1.0.2)
concurrent-ruby (1.0.4)
descendants_tracker (0.0.4)
thread_safe (~> 0.3, >= 0.3.1)
diff-lcs (1.2.5)
equalizer (0.0.11)
erubis (2.7.0)
factory_girl (4.7.0)
factory_girl (4.8.0)
activesupport (>= 3.0.0)
factory_girl_rails (4.7.0)
factory_girl (~> 4.7.0)
factory_girl_rails (4.8.0)
factory_girl (~> 4.8.0)
railties (>= 3.0.0)
httparty (0.14.0)
multi_xml (>= 0.5.2)
......@@ -58,28 +58,28 @@ GEM
nokogiri (>= 1.5.9)
method_source (0.8.2)
mini_portile2 (2.1.0)
minitest (5.9.1)
multi_xml (0.5.5)
nokogiri (1.6.8.1)
minitest (5.10.1)
multi_xml (0.6.0)
nokogiri (1.7.0.1)
mini_portile2 (~> 2.1.0)
parser (2.3.2.0)
parser (2.3.3.1)
ast (~> 2.2)
powerpack (0.1.1)
rack (2.0.1)
rack-test (0.6.3)
rack (>= 1.0)
rails-dom-testing (2.0.1)
rails-dom-testing (2.0.2)
activesupport (>= 4.2.0, < 6.0)
nokogiri (~> 1.6.0)
nokogiri (~> 1.6)
rails-html-sanitizer (1.0.3)
loofah (~> 2.0)
railties (5.0.0.1)
actionpack (= 5.0.0.1)
activesupport (= 5.0.0.1)
railties (5.0.1)
actionpack (= 5.0.1)
activesupport (= 5.0.1)
method_source
rake (>= 0.8.7)
thor (>= 0.18.1, < 2.0)
rainbow (2.1.0)
rainbow (2.2.1)
rake (11.3.0)
rspec (3.5.0)
rspec-core (~> 3.5.0)
......@@ -94,18 +94,18 @@ GEM
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.5.0)
rspec-support (3.5.0)
rubocop (0.45.0)
rubocop (0.46.0)
parser (>= 2.3.1.1, < 3.0)
powerpack (~> 0.1)
rainbow (>= 1.99.1, < 3.0)
ruby-progressbar (~> 1.7)
unicode-display_width (~> 1.0, >= 1.0.1)
ruby-progressbar (1.8.1)
thor (0.19.1)
thor (0.19.4)
thread_safe (0.3.5)
tzinfo (1.2.2)
thread_safe (~> 0.1)
unicode-display_width (1.1.1)
unicode-display_width (1.1.2)
virtus (1.0.5)
axiom-types (~> 0.1)
coercible (~> 1.0)
......@@ -124,4 +124,4 @@ DEPENDENCIES
rubocop
BUNDLED WITH
1.12.5
1.13.6
......@@ -2,7 +2,7 @@ machine:
timezone:
Europe/Amsterdam
ruby:
version: 2.2.4
version: 2.3.3
test:
override:
- bundle exec rspec spec:
......
# frozen_string_literal: true
require 'fizzy/api'
# frozen_string_literal: true
require 'active_interaction'
require 'fizzy/api/version'
require 'fizzy/api/sessions'
......
# frozen_string_literal: true
require 'fizzy/api/endpoints/endpoint'
require 'fizzy/api/endpoints/calculate_outcome'
require 'fizzy/api/endpoints/render_graph'
......
# frozen_string_literal: true
module Fizzy
module Api
module Endpoints
......
# frozen_string_literal: true
module Fizzy
module Api
module Endpoints
......
# frozen_string_literal: true
module Fizzy
module Api
module Endpoints
......
# frozen_string_literal: true
module Fizzy
module Api
module Endpoints
......
# frozen_string_literal: true
module Fizzy
module Api
module Endpoints
......
# frozen_string_literal: true
require 'fizzy/api/errors/graph_not_found_error'
require 'fizzy/api/errors/outcome_not_available_error'
require 'fizzy/api/errors/too_few_measurements_error'
......
# frozen_string_literal: true
module Fizzy
module Api
module Errors
......
# frozen_string_literal: true
module Fizzy
module Api
module Errors
......
# frozen_string_literal: true
module Fizzy
module Api
module Errors
......
# frozen_string_literal: true
module Fizzy
module Api
module Errors
......
# frozen_string_literal: true
module Fizzy
module Api
module Errors
......
# frozen_string_literal: true
require 'httparty'
require 'fizzy/api/sessions/basic_auth_session'
......
# frozen_string_literal: true
module Fizzy
module Api
module Sessions
......
# frozen_string_literal: true
module Fizzy
module Api
VERSION = '0.1.4'.freeze
VERSION = '0.1.4'
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment