Skip to content

Commit

Permalink
pushed to rubygems
Browse files Browse the repository at this point in the history
  • Loading branch information
agustibr committed Jul 12, 2017
1 parent d4c0435 commit 73603d1
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 36 deletions.
52 changes: 26 additions & 26 deletions Gemfile.lock
@@ -1,10 +1,10 @@
PATH
remote: .
specs:
ctws (0.1.4.alpha)
bcrypt (~> 3.1.7)
jwt
rails (~> 5.0.2)
ctws (0.1.5.alpha)
bcrypt (~> 3.1)
jwt (~> 1.5)
rails (~> 5.0)

GEM
remote: https://rubygems.org/
Expand Down Expand Up @@ -50,23 +50,23 @@ GEM
bcrypt (3.1.11)
builder (3.2.3)
concurrent-ruby (1.0.5)
database_cleaner (1.5.3)
database_cleaner (1.6.1)
diff-lcs (1.3)
erubis (2.7.0)
factory_girl (4.8.0)
activesupport (>= 3.0.0)
factory_girl_rails (4.8.0)
factory_girl (~> 4.8.0)
railties (>= 3.0.0)
faker (1.7.3)
faker (1.8.3)
i18n (~> 0.5)
globalid (0.4.0)
activesupport (>= 4.2.0)
i18n (0.8.1)
jwt (1.5.6)
loofah (2.0.3)
nokogiri (>= 1.5.9)
mail (2.6.5)
mail (2.6.6)
mime-types (>= 1.16, < 4)
method_source (0.8.2)
mime-types (3.1)
Expand Down Expand Up @@ -104,23 +104,23 @@ GEM
rake (>= 0.8.7)
thor (>= 0.18.1, < 2.0)
rake (12.0.0)
rspec-core (3.5.4)
rspec-support (~> 3.5.0)
rspec-expectations (3.5.0)
rspec-core (3.6.0)
rspec-support (~> 3.6.0)
rspec-expectations (3.6.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.5.0)
rspec-mocks (3.5.0)
rspec-support (~> 3.6.0)
rspec-mocks (3.6.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.5.0)
rspec-rails (3.5.2)
rspec-support (~> 3.6.0)
rspec-rails (3.6.0)
actionpack (>= 3.0)
activesupport (>= 3.0)
railties (>= 3.0)
rspec-core (~> 3.5.0)
rspec-expectations (~> 3.5.0)
rspec-mocks (~> 3.5.0)
rspec-support (~> 3.5.0)
rspec-support (3.5.0)
rspec-core (~> 3.6.0)
rspec-expectations (~> 3.6.0)
rspec-mocks (~> 3.6.0)
rspec-support (~> 3.6.0)
rspec-support (3.6.0)
shoulda-matchers (3.1.1)
activesupport (>= 4.0.0)
sprockets (3.7.1)
Expand All @@ -144,13 +144,13 @@ PLATFORMS

DEPENDENCIES
ctws!
database_cleaner
factory_girl_rails
faker
rake
rspec-rails
shoulda-matchers
sqlite3
database_cleaner (~> 1.6)
factory_girl_rails (~> 4.8)
faker (~> 1.8)
rake (~> 12.0)
rspec-rails (~> 3.6)
shoulda-matchers (~> 3.1)
sqlite3 (~> 1.3)

BUNDLED WITH
1.14.6
20 changes: 10 additions & 10 deletions ctws.gemspec
Expand Up @@ -18,17 +18,17 @@ Gem::Specification.new do |s|

s.test_files = Dir["spec/**/*"]

s.add_dependency "rails", "~> 5.0.2"
s.add_dependency "bcrypt", "~> 3.1.7"
s.add_dependency "jwt"
s.add_dependency "rails", "~> 5.0"
s.add_dependency "bcrypt", "~> 3.1"
s.add_dependency "jwt", "~> 1.5"
# s.add_dependency "rack-cors", require: 'rack/cors'
# s.add_dependency "rack-attack"

s.add_development_dependency "sqlite3"
s.add_development_dependency "rspec-rails"
s.add_development_dependency 'factory_girl_rails'
s.add_development_dependency 'shoulda-matchers'
s.add_development_dependency 'faker'
s.add_development_dependency 'database_cleaner'
s.add_development_dependency 'rake'
s.add_development_dependency "sqlite3", "~> 1.3"
s.add_development_dependency "rspec-rails", "~> 3.6"
s.add_development_dependency 'factory_girl_rails', "~> 4.8"
s.add_development_dependency 'shoulda-matchers', "~> 3.1"
s.add_development_dependency 'faker', "~> 1.8"
s.add_development_dependency 'database_cleaner', "~> 1.6"
s.add_development_dependency 'rake', "~> 12.0"
end

0 comments on commit 73603d1

Please sign in to comment.