Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Testsformaster #150

Open
wants to merge 49 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
d3ce6ce
commit message
kathyonu Apr 18, 2015
c10c1a0
new merged master
kathyonu Apr 18, 2015
12e3bda
fixed old data
kathyonu Apr 18, 2015
8a141ae
updated README
kathyonu Apr 19, 2015
746bde3
commit work so I can create signupdownload branch
kathyonu Apr 20, 2015
188de87
update README, restored files to upstream master
kathyonu Apr 20, 2015
231ee7b
conforming to master, removing files
kathyonu Apr 21, 2015
93da61d
fixed duplicate group :development, :est in Gemfile
kathyonu Apr 21, 2015
690814a
installed RSpec3, removed old files
kathyonu Apr 21, 2015
ce762dd
removed old files
kathyonu Apr 21, 2015
ad38cdf
first user_spec.rb tests passing
kathyonu Apr 21, 2015
e1bcb29
first two user tests passing
kathyonu Apr 21, 2015
0e06e90
merge commit
kathyonu Apr 21, 2015
3124121
removed stripe initializer
kathyonu Apr 21, 2015
c44deb5
Update user_spec.rb
kathyonu Apr 21, 2015
73fdf00
fixed pull fixings
kathyonu Apr 23, 2015
d20cab3
restored .rspec file, system fires right up
kathyonu Apr 23, 2015
c311e3c
adjust RSpec setup
kathyonu Apr 24, 2015
91de0e3
fixed merge conflicts
kathyonu Apr 24, 2015
55299a9
resets in RSpec setup
kathyonu Apr 24, 2015
81ad7b9
fixed missing semi-colon
kathyonu Apr 24, 2015
a1ef8be
restored gemset
kathyonu Apr 24, 2015
e64c5e3
reverted .ruby-verion to upstream/master
kathyonu Apr 24, 2015
5c97763
revert origin/master to upstream/master
kathyonu Apr 24, 2015
5d5f960
restored .gitignore to upstream/master
kathyonu Apr 24, 2015
7846f17
now fully conformed to upstream/master
kathyonu Apr 24, 2015
4c56f92
fixed a few errors and conformed to upstream/master
kathyonu Apr 24, 2015
094926a
conformed to master, new configurations, 3 RSpec tests pass
kathyonu Apr 25, 2015
b05abe5
Stripe Card API tests passing
kathyonu May 2, 2015
42502e5
Stripe API Card spec passing
kathyonu May 2, 2015
876b1be
merged upstream master
kathyonu May 11, 2015
d3fb57c
rspec tests 98 examples, 0 failures, 4 pending
kathyonu Jul 1, 2015
f677467
errors repaired
kathyonu Jul 1, 2015
8241e5f
tests 104 examples 4 pending
kathyonu Jul 6, 2015
1fd9414
attempting to create idempotency_key tests
kathyonu Jul 8, 2015
135d473
test improvements
kathyonu Jul 12, 2015
1be5bce
a few more improvements
kathyonu Jul 13, 2015
1a6f39f
changed cards to sources + housekeepings
kathyonu Jul 13, 2015
35a6453
restored stripe_examples.rb
kathyonu Aug 11, 2015
d587cbf
Rails4.2.3, stripe tests pass, added rubocop
kathyonu Aug 13, 2015
1607173
created recipient_card_spec
kathyonu Oct 5, 2015
4decbac
user_spec tests pass
kathyonu Oct 5, 2015
a72bd28
sorting out a stash apply
kathyonu Nov 3, 2015
d1d34cb
added .rubocop.yml file
kathyonu Mar 4, 2016
51a762e
tests work pass, 5 pending
kathyonu Mar 4, 2016
2bf003a
synced upstream/master
kathyonu Mar 4, 2016
5b0a148
upgrade to ruby-2.3.0 rails-4.2.5.2
kathyonu Mar 4, 2016
9d57ef9
179 tests, 0 fails, 5 pending
kathyonu Mar 4, 2016
f99c55d
added stripe webhook customer_created
kathyonu Mar 5, 2016
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -82,3 +82,7 @@ pickle-email-*.html

# tilde files are usually backup files from a text editor
*~

# StripeMock log
/stripe-mock-server.log
/stripe-mock-server.pid
2 changes: 1 addition & 1 deletion .rspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
--color
--format documentation
--require spec_helper
--require rails_helper
--require rails_helper
11 changes: 11 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
AlignParameters:
Enabled: false

Rails:
Enabled: true

Metrics/LineLength:
Max: 120

Style/Encoding:
Enabled: false
2 changes: 1 addition & 1 deletion .ruby-gemset
Original file line number Diff line number Diff line change
@@ -1 +1 @@
rails-stripe-membership-saas
rails-stripe-membership-saas
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.2.3
2.3.0
32 changes: 16 additions & 16 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
source 'https://rubygems.org'
ruby '2.2.3'
gem 'rails', '4.2.5'
ruby '2.3.0'
gem 'rails', '4.2.5.2'
gem 'sqlite3'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'jquery-rails'
gem 'jbuilder', '~> 2.0'
group :development, :test do
gem 'byebug'
end
group :development do
gem 'web-console', '~> 2.0'
gem 'spring'
end
gem 'bootstrap-sass'
gem 'coffee-rails', '~> 4.1.0'
gem 'devise'
gem 'gibbon'
gem 'gibbon', '~> 2.2', '>= 2.2.1'
gem 'high_voltage'
gem 'jquery-rails'
gem 'jbuilder', '~> 2.0'
gem 'payola-payments'
gem 'sass-rails', '~> 5.0'
gem 'sucker_punch'
gem 'uglifier', '>= 1.3.0'
group :development do
gem 'better_errors'
gem 'quiet_assets'
gem 'rails_layout'
gem 'spring-commands-rspec'
gem 'web-console', '~> 3.0'
end
group :development, :test do
gem 'byebug'
gem 'factory_girl_rails'
gem 'faker'
gem 'pry'
gem 'rspec-rails'
gem 'stripe-ruby-mock', '~> 2.1.1', :require => 'stripe_mock'
gem 'rubocop', require: false
gem 'spring'
# gem 'stripe-ruby-mock', '~> 2.2.0', require: 'stripe_mock'
gem 'stripe-ruby-mock', git: 'https://github.com/rebelidealist/stripe-ruby-mock.git', branch: 'master', require: 'stripe_mock'
gem 'thin', '~> 1.6.3'
end
group :test do
gem 'capybara'
Expand Down
Loading