├── .gitignore ├── .travis.yml ├── Appraisals ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── gemfiles ├── 4.2.gemfile └── 5.1.gemfile ├── increment_with_sql.gemspec ├── lib ├── increment_with_sql.rb └── increment_with_sql │ └── version.rb └── test ├── database.yml ├── increment_with_sql_test.rb └── test_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkamel/increment_with_sql/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkamel/increment_with_sql/HEAD/.travis.yml -------------------------------------------------------------------------------- /Appraisals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkamel/increment_with_sql/HEAD/Appraisals -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkamel/increment_with_sql/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkamel/increment_with_sql/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkamel/increment_with_sql/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkamel/increment_with_sql/HEAD/Rakefile -------------------------------------------------------------------------------- /gemfiles/4.2.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkamel/increment_with_sql/HEAD/gemfiles/4.2.gemfile -------------------------------------------------------------------------------- /gemfiles/5.1.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkamel/increment_with_sql/HEAD/gemfiles/5.1.gemfile -------------------------------------------------------------------------------- /increment_with_sql.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkamel/increment_with_sql/HEAD/increment_with_sql.gemspec -------------------------------------------------------------------------------- /lib/increment_with_sql.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkamel/increment_with_sql/HEAD/lib/increment_with_sql.rb -------------------------------------------------------------------------------- /lib/increment_with_sql/version.rb: -------------------------------------------------------------------------------- 1 | module IncrementWithSql 2 | VERSION = "0.0.3" 3 | end 4 | -------------------------------------------------------------------------------- /test/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkamel/increment_with_sql/HEAD/test/database.yml -------------------------------------------------------------------------------- /test/increment_with_sql_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkamel/increment_with_sql/HEAD/test/increment_with_sql_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkamel/increment_with_sql/HEAD/test/test_helper.rb --------------------------------------------------------------------------------