Skip to content

Commit

Permalink
object_attorney version update
Browse files Browse the repository at this point in the history
  • Loading branch information
goncalvesjoao committed Aug 1, 2016
1 parent 42a2813 commit 842a5a3
Show file tree
Hide file tree
Showing 6 changed files with 97 additions and 15 deletions.
15 changes: 12 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
/InstalledFiles
/pkg/
/spec/reports/
/spec/examples.txt
/test/tmp/
/test/version_tmp/
/tmp/
Expand All @@ -20,15 +21,15 @@ build/
/doc/
/rdoc/

## Environment normalisation:
## Environment normalization:
/.bundle/
/vendor/bundle
/lib/bundler/man/

# for a library or gem, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
Gemfile.lock
.ruby-version
# Gemfile.lock
# .ruby-version
.ruby-gemset

# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
Expand All @@ -39,3 +40,11 @@ Gemfile.lock
*.o
*.a
mkmf.log

.DS_Store

# Jetbrains Idea files
.idea/
api.iml

db/schema.rb
1 change: 1 addition & 0 deletions .ruby-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2.3.0
11 changes: 1 addition & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,4 @@
language: ruby
rvm:
- 1.9.3
- 2.1.0

addons:
code_climate:
repo_token:
secure: "ByiO5La5wZqGf6TA/pwBTDs1CN/FBHxLiPR3tlhLi8Ij4ikXswlP5IqBwlFDxvlLeCU5cDMT+n9mpU9kQHhT2BZg/aeuEsUbELVUrTpTOnPbnptvRWGzvN7ipsuXZZI1UdL4L9YGo84vO1EQMdDS+zr2OSSP7t1U14uAjiFGwQQ="

env:
global:
secure: ByiO5La5wZqGf6TA/pwBTDs1CN/FBHxLiPR3tlhLi8Ij4ikXswlP5IqBwlFDxvlLeCU5cDMT+n9mpU9kQHhT2BZg/aeuEsUbELVUrTpTOnPbnptvRWGzvN7ipsuXZZI1UdL4L9YGo84vO1EQMdDS+zr2OSSP7t1U14uAjiFGwQQ=
- 2.3.0
81 changes: 81 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
PATH
remote: .
specs:
rest_my_case (2.0.2)
object_attorney (>= 3.0.6)

GEM
remote: https://rubygems.org/
specs:
activemodel (3.2.22.2)
activesupport (= 3.2.22.2)
builder (~> 3.0.0)
activesupport (3.2.22.2)
i18n (~> 0.6, >= 0.6.4)
multi_json (~> 1.0)
ast (2.2.0)
builder (3.0.4)
codeclimate-test-reporter (0.4.8)
simplecov (>= 0.7.1, < 1.0.0)
coderay (1.1.1)
diff-lcs (1.2.5)
docile (1.1.5)
i18n (0.7.0)
json (1.8.3)
method_source (0.8.2)
multi_json (1.12.1)
object_attorney (3.0.6)
activemodel (>= 3.0.0)
parser (2.3.0.6)
ast (~> 2.2)
powerpack (0.1.1)
pry (0.10.3)
coderay (~> 1.1.0)
method_source (~> 0.8.1)
slop (~> 3.4)
rainbow (2.1.0)
rake (11.2.2)
rspec (3.4.0)
rspec-core (~> 3.4.0)
rspec-expectations (~> 3.4.0)
rspec-mocks (~> 3.4.0)
rspec-core (3.4.3)
rspec-support (~> 3.4.0)
rspec-expectations (3.4.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.4.0)
rspec-mocks (3.4.1)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.4.0)
rspec-support (3.4.1)
rubocop (0.37.2)
parser (>= 2.3.0.4, < 3.0)
powerpack (~> 0.1)
rainbow (>= 1.99.1, < 3.0)
ruby-progressbar (~> 1.7)
unicode-display_width (~> 0.3)
ruby-progressbar (1.7.5)
simplecov (0.11.2)
docile (~> 1.1.0)
json (~> 1.8)
simplecov-html (~> 0.10.0)
simplecov-html (0.10.0)
slop (3.6.0)
unicode-display_width (0.3.1)

PLATFORMS
ruby

DEPENDENCIES
activemodel (~> 3)
codeclimate-test-reporter (= 0.4.8)
json (= 1.8.3)
pry (= 0.10.3)
rake (= 11.2.2)
rest_my_case!
rspec (= 3.4.0)
rubocop (= 0.37.2)
simplecov (= 0.11.2)

BUNDLED WITH
1.12.5
2 changes: 1 addition & 1 deletion lib/rest_my_case/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module RestMyCase
VERSION = '2.0.1'.freeze
VERSION = '2.0.2'.freeze
end
2 changes: 1 addition & 1 deletion rest_my_case.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ Gem::Specification.new do |gem|
gem.add_development_dependency 'activemodel', '~> 3'
gem.add_development_dependency 'codeclimate-test-reporter', '0.4.8'

gem.add_dependency 'object_attorney', '>= 3.0.0'
gem.add_dependency 'object_attorney', '>= 3.0.6'
end

0 comments on commit 842a5a3

Please sign in to comment.