acl9 0.12.0 → 2.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (141) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +21 -0
  3. data/.ruby-version +1 -0
  4. data/.travis.yml +22 -0
  5. data/Appraisals +11 -0
  6. data/CHANGELOG.md +114 -0
  7. data/CONTRIBUTING.md +62 -0
  8. data/Gemfile +9 -0
  9. data/Gemfile.lock +141 -0
  10. data/LICENSE +9 -0
  11. data/README.md +308 -0
  12. data/Rakefile +9 -27
  13. data/acl9.gemspec +29 -0
  14. data/bin/appraisal +16 -0
  15. data/bin/bundler +16 -0
  16. data/bin/cc-tddium-post-worker +16 -0
  17. data/bin/erubis +16 -0
  18. data/bin/rackup +16 -0
  19. data/bin/rails +16 -0
  20. data/bin/rake +16 -0
  21. data/bin/sprockets +16 -0
  22. data/bin/tapout +16 -0
  23. data/bin/thor +16 -0
  24. data/bin/tilt +16 -0
  25. data/bin/yard +16 -0
  26. data/bin/yardoc +16 -0
  27. data/bin/yri +16 -0
  28. data/gemfiles/rails_4.0.gemfile +10 -0
  29. data/gemfiles/rails_4.1.gemfile +10 -0
  30. data/gemfiles/rails_4.2.gemfile +10 -0
  31. data/lib/acl9/controller_extensions/dsl_base.rb +36 -55
  32. data/lib/acl9/controller_extensions/generators.rb +1 -1
  33. data/lib/acl9/controller_extensions.rb +1 -1
  34. data/lib/acl9/helpers.rb +12 -5
  35. data/lib/acl9/model_extensions/for_object.rb +20 -5
  36. data/lib/acl9/model_extensions/for_subject.rb +48 -21
  37. data/lib/acl9/model_extensions.rb +22 -25
  38. data/lib/acl9/prepositions.rb +18 -0
  39. data/lib/acl9/version.rb +3 -0
  40. data/lib/acl9.rb +36 -10
  41. data/lib/generators/acl9/setup/USAGE +35 -0
  42. data/lib/generators/acl9/setup/setup_generator.rb +115 -0
  43. data/lib/generators/acl9/setup/templates/create_role_tables.rb +22 -0
  44. data/lib/generators/acl9/setup/templates/role.rb +3 -0
  45. data/test/config_test.rb +55 -0
  46. data/test/controller_extensions/actions_test.rb +199 -0
  47. data/test/controller_extensions/anon_test.rb +39 -0
  48. data/test/controller_extensions/base.rb +96 -0
  49. data/test/controller_extensions/basics_test.rb +44 -0
  50. data/test/controller_extensions/conditions_test.rb +48 -0
  51. data/test/controller_extensions/method_test.rb +70 -0
  52. data/test/controller_extensions/multi_match_test.rb +142 -0
  53. data/test/controller_extensions/multiple_role_arguments_test.rb +135 -0
  54. data/test/controller_extensions/prepositions_test.rb +108 -0
  55. data/test/controller_extensions/pseudo_role_test.rb +26 -0
  56. data/test/controller_extensions/role_test.rb +75 -0
  57. data/test/controllers/acl_action_override_test.rb +24 -0
  58. data/test/controllers/acl_arguments_test.rb +5 -0
  59. data/test/controllers/acl_block_test.rb +5 -0
  60. data/test/controllers/acl_boolean_method_test.rb +5 -0
  61. data/test/controllers/acl_helper_method_test.rb +26 -0
  62. data/test/controllers/acl_ivars_test.rb +15 -0
  63. data/test/controllers/acl_method2_test.rb +6 -0
  64. data/test/controllers/acl_method_test.rb +6 -0
  65. data/test/controllers/acl_object_hash_test.rb +18 -0
  66. data/test/controllers/acl_query_method_named_test.rb +9 -0
  67. data/test/controllers/acl_query_method_test.rb +9 -0
  68. data/test/controllers/acl_query_method_with_lambda_test.rb +9 -0
  69. data/test/controllers/acl_query_mixin.rb +51 -0
  70. data/test/controllers/acl_subject_method_test.rb +15 -0
  71. data/test/controllers/arguments_checking_test.rb +43 -0
  72. data/test/dummy/app/controllers/acl_action_override.rb +15 -0
  73. data/test/dummy/app/controllers/acl_arguments.rb +10 -0
  74. data/test/dummy/app/controllers/acl_block.rb +6 -0
  75. data/test/dummy/app/controllers/acl_boolean_method.rb +23 -0
  76. data/test/dummy/app/controllers/acl_helper_method.rb +11 -0
  77. data/test/dummy/app/controllers/acl_ivars.rb +17 -0
  78. data/test/dummy/app/controllers/acl_method.rb +6 -0
  79. data/test/dummy/app/controllers/acl_method2.rb +6 -0
  80. data/test/dummy/app/controllers/acl_objects_hash.rb +10 -0
  81. data/test/dummy/app/controllers/acl_query_method.rb +9 -0
  82. data/test/dummy/app/controllers/acl_query_method_named.rb +13 -0
  83. data/test/dummy/app/controllers/acl_query_method_with_lambda.rb +9 -0
  84. data/test/dummy/app/controllers/acl_subject_method.rb +16 -0
  85. data/test/dummy/app/controllers/application_controller.rb +7 -0
  86. data/test/dummy/app/controllers/empty_controller.rb +5 -0
  87. data/test/dummy/app/helpers/application_helper.rb +2 -0
  88. data/test/dummy/app/helpers/some_helper.rb +8 -0
  89. data/test/dummy/app/models/.keep +0 -0
  90. data/test/dummy/app/models/access.rb +3 -0
  91. data/test/dummy/app/models/account.rb +3 -0
  92. data/test/dummy/app/models/bar.rb +3 -0
  93. data/test/dummy/app/models/concerns/.keep +0 -0
  94. data/test/dummy/app/models/foo.rb +3 -0
  95. data/test/dummy/app/models/foo_bar.rb +3 -0
  96. data/test/dummy/app/models/other/foo.rb +5 -0
  97. data/test/dummy/app/models/other/role.rb +5 -0
  98. data/test/dummy/app/models/other/user.rb +5 -0
  99. data/test/dummy/app/models/role.rb +3 -0
  100. data/test/dummy/app/models/user.rb +3 -0
  101. data/test/dummy/app/models/uuid.rb +4 -0
  102. data/test/dummy/config/application.rb +23 -0
  103. data/test/dummy/config/boot.rb +4 -0
  104. data/test/dummy/config/database.yml +25 -0
  105. data/test/dummy/config/environment.rb +5 -0
  106. data/test/dummy/config/environments/development.rb +37 -0
  107. data/test/dummy/config/environments/production.rb +78 -0
  108. data/test/dummy/config/environments/test.rb +40 -0
  109. data/test/dummy/config/initializers/assets.rb +8 -0
  110. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  111. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  112. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  113. data/test/dummy/config/initializers/inflections.rb +16 -0
  114. data/test/dummy/config/initializers/mime_types.rb +4 -0
  115. data/test/dummy/config/initializers/secrets.rb +1 -0
  116. data/test/dummy/config/initializers/session_store.rb +3 -0
  117. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  118. data/test/dummy/config/locales/en.yml +23 -0
  119. data/test/dummy/config/routes.rb +3 -0
  120. data/test/dummy/config.ru +4 -0
  121. data/test/dummy/db/migrate/20141117132218_create_tables.rb +99 -0
  122. data/test/helpers/helper_test.rb +89 -0
  123. data/test/models/roles_test.rb +357 -0
  124. data/test/models/roles_with_custom_association_names_test.rb +28 -0
  125. data/test/models/roles_with_custom_class_names_test.rb +28 -0
  126. data/test/models/system_roles_test.rb +22 -0
  127. data/test/models/users_roles_and_subjects_with_namespaced_class_names_test.rb +30 -0
  128. data/test/test_helper.rb +80 -20
  129. data/test/version_test.rb +7 -0
  130. metadata +290 -71
  131. data/CHANGELOG.textile +0 -46
  132. data/README.textile +0 -903
  133. data/VERSION.yml +0 -5
  134. data/lib/acl9/config.rb +0 -11
  135. data/test/access_control_test.rb +0 -338
  136. data/test/dsl_base_test.rb +0 -795
  137. data/test/helpers_test.rb +0 -134
  138. data/test/roles_test.rb +0 -355
  139. data/test/support/controllers.rb +0 -207
  140. data/test/support/models.rb +0 -59
  141. data/test/support/schema.rb +0 -92
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 42197ff7517796cb0d549260db507f532ff38abd
4
+ data.tar.gz: 5a1950ee49a8c32612af387eb6cfa0a9ab3ae2ec
5
+ SHA512:
6
+ metadata.gz: 90cdebd216f60a35fed030a1fdf924c41f17af17b7994d1dd30671495ab3b1d941196b30873d4340e05b50971e5efb5fd8d16688d3a9e30e0b0c081694cd3741
7
+ data.tar.gz: c62f318d3aab6e16966d2143eb8e30f9635dbc7f668ea16c5fb382fb54887b32e873abcd15ccd77637b63ffb01af608b280a1fbad48eb5fbfca7f4465d26f56b
data/.gitignore ADDED
@@ -0,0 +1,21 @@
1
+ # See https://help.github.com/articles/ignoring-files for more about ignoring files.
2
+ #
3
+ # If you find yourself ignoring temporary files generated by your text editor
4
+ # or operating system, you probably want to add a global ignore instead:
5
+ # git config --global core.excludesfile '~/.gitignore_global'
6
+
7
+ # Ignore bundler config.
8
+ /.bundle
9
+
10
+ # Ignore the default SQLite database.
11
+ /db/*.sqlite3
12
+ /db/*.sqlite3-journal
13
+
14
+ # Ignore all logfiles and tempfiles.
15
+ **/log/*.log
16
+ **/tmp
17
+
18
+ /gemfiles/*.lock
19
+
20
+ /doc
21
+ /.yardoc
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 2.2.3
data/.travis.yml ADDED
@@ -0,0 +1,22 @@
1
+ cache: bundler
2
+ language: ruby
3
+ rvm:
4
+ - 2.0.0
5
+ - 2.1.8
6
+ - 2.2.3
7
+ - 2.3.0
8
+ - ruby-head
9
+
10
+ gemfile:
11
+ - gemfiles/rails_4.0.gemfile
12
+ - gemfiles/rails_4.1.gemfile
13
+ - gemfiles/rails_4.2.gemfile
14
+
15
+ matrix:
16
+ fast_finish: true
17
+ allow_failures:
18
+ - rvm: ruby-head
19
+
20
+ addons:
21
+ code_climate:
22
+ repo_token: 6701faf591ff926cd9b3ea7f07c5e72984d2b1e26b33caba26114a6bfe859a11
data/Appraisals ADDED
@@ -0,0 +1,11 @@
1
+ appraise "rails-4.0" do
2
+ gem "rails", "~> 4.0.0"
3
+ end
4
+
5
+ appraise "rails-4.1" do
6
+ gem "rails", "~> 4.1.0"
7
+ end
8
+
9
+ appraise "rails-4.2" do
10
+ gem 'rails', '~> 4.2.0'
11
+ end
data/CHANGELOG.md ADDED
@@ -0,0 +1,114 @@
1
+ ## 2.1.0 - 14 May 2015
2
+
3
+ Added `:only` (as well as `:to`) for specifying actions in `allow`/`deny`
4
+ blocks.
5
+
6
+ ## 2.0.0 - 14 May 2015
7
+
8
+ Thanks to @pjungwir:
9
+
10
+ * Raise ArgumentError now if bad options passed to allow/deny
11
+
12
+ ## 1.3.0 - 13 May 2015
13
+
14
+ Quick new feature dump:
15
+
16
+ * Prepositions in has(_no)_role[!?] methods
17
+
18
+ ## 1.2.1 - 13 Mar 2015
19
+
20
+ Bugfix for API love:
21
+
22
+ * Rails::API was erroring
23
+
24
+ ## 1.2.0 - 12 Jan 2015
25
+
26
+ The generator release (and some other cool new features):
27
+
28
+ * New: ZOMG - we have a generator now
29
+ * Role names are now normalized with `.underscore.singularize` - especially
30
+ handy in case sensitive DBs
31
+ * New: `Acl9.configure` lets you specify config options nicely
32
+ * New: `object.users :managers` to get a list of users who have manager role on
33
+ `object`
34
+ * Testing against Ruby 2.2
35
+
36
+ ## 1.1.0 - 15 Dec 2014
37
+
38
+ Bugfix release with a minor version bump because one security fix might not be
39
+ expected, also doc improvements
40
+
41
+ * `has_role!` was not returning true properly when more roles remained (this is
42
+ the change that might be unexpected)
43
+ * License added to gemspec
44
+ * Testing against Rails 4.2
45
+ * When subject was destroyed, roles were not removed from the DB.
46
+
47
+ ## 1.0.0 - 22 Nov 2014
48
+
49
+ The resurrection, Rails4, doc cleanup, Ruby2, SemVer, xunit, lots of stuff:
50
+
51
+ * Getting involved is easier, ie. you should be able to just `bundle && rake`
52
+ * The tests are all in xunit now because rspec is ugly, slow and cumbersome (and the whole test suite now runs in 3 seconds (on my machine ;))
53
+ * The deprecation warnings are GOOOOONE
54
+ * That annoying "Stack level too deep" bug is fixed
55
+ * There's now an actual license for the project
56
+ * The gemspec specifies the license (and doesn't have the date hardcoded anymore)
57
+ * The wiki is New and Improved™ - with a lot of work still left to do there
58
+ * WIP: The README is being reduced to something more consumable (because all the nitty gritty details are now in the wiki)
59
+ * The README is now in markdown, so it's easier to transfer things out into the wiki
60
+ * We've adopted SemVer officially
61
+ * The issues are groomed and in milestones
62
+ * CI is now happening on Travis
63
+ * Code quality is now happening on CodeClimate
64
+ * We're testing against Rails 4.0 and 4.1 in both Ruby 2.0 and 2.1 now
65
+ * We're officially not supporting Rails < 4 or Ruby < 2 in the 1.x releases (we'll bow to peer pressure if there is any)
66
+ * WIP: `protect_global_roles` is true by default for 1.0.0
67
+ * We're now on IRC as #acl9 (on freenode)
68
+
69
+ ## 0.12.0 - 04 Jan 2010
70
+
71
+ An anniversary release of fixes and hacks, introduced by venerable users of the plugin.
72
+
73
+ * Allow for inheritance of subject (Jeff Jaco)
74
+ * Renamed "Object" module in extensions, since it caused some breakage inside activesupport
75
+ (invisiblelama).
76
+ * `show_to` helper for usage in views (Antono Vasiljev)
77
+ * `:association_name` config option, now you can change Subject#role_objects to whatever
78
+ you want (Jeff Tucker).
79
+ * Fix bug when Subject#id is a string, e.g. UUID (Julien Bachmann)
80
+ * Bug with action blocks when using anonymous and another role (Franck)
81
+
82
+
83
+ ## 0.11.0 - 16 Sep 2009
84
+
85
+ * :protect_global_roles
86
+ * Subject#roles renamed to Subject#role_objects
87
+ * Fix namespaced models in roles backend (thanks goes to Tomas Jogin)
88
+ * Action name override in boolean methods.
89
+ * `:query_method` option for `access_control`.
90
+
91
+ ## 0.10.0 - 03 May 2009
92
+
93
+ * Use context+matchy combo for testing
94
+ * Bugfix: unwanted double quote in generated SQL statement
95
+
96
+ ## 0.9.4 - 27 Feb 2009
97
+
98
+ * Introduce :if and :unless rule options.
99
+
100
+ ## 0.9.3 - 04 Feb 2009
101
+
102
+ * Fix bug in delete_role - didn't work with custom class names
103
+ * Add `:helper` option for `access_control`.
104
+ * Ability to generate helper methods directly (place `include Acl9Helpers` in your helper module).
105
+
106
+ ## 0.9.2 - 11 Jan 2009
107
+
108
+ * `access_control :method do end` as shorter form for `access_control :as_method => :method do end`.
109
+ * Boolean method can now receive an objects hash which will be looked into first before taking
110
+ an instance variable.
111
+
112
+ ## 0.9.1 - 03 Jan 2009
113
+
114
+ Initial release.
data/CONTRIBUTING.md ADDED
@@ -0,0 +1,62 @@
1
+ # Contributing
2
+
3
+ Hi, I'm Jason, my online nickname is "smathy" which I use on IRC, twitter,
4
+ StackOverflow, here on github, and a few other places on the internet.
5
+
6
+ Oleg is the creator of acl9, but other commitments have meant that he's had
7
+ very little time to maintain this project and so I've basically taken over as
8
+ the primary maintainer.
9
+
10
+ I like to start by introducing myself so that you know that I'm just a human
11
+ being, a normal guy, and that if you have something you want to contribute to
12
+ acl9 then I'm more than happy to hear from you.
13
+
14
+ There really aren't any hard and fast rules here for contributing. Feel free to
15
+ raise issues, you can even just ask questions in an issue if you'd like,
16
+ although IRC or StackOverflow is probably a much better forum for that. You can
17
+ ping me on twitter, or even email me at jk@handle.it
18
+
19
+ Also see the README for information on getting in contact with the rest of the
20
+ community.
21
+
22
+ ## Dev Stuff
23
+
24
+ If you're going to contribute code then just fork our repo, write your thing,
25
+ and submit a pull request.
26
+
27
+ ### Setup
28
+
29
+ We have a `.ruby-version` file, so if you use a ruby manager that
30
+ understands that then you might need to install that version of ruby, but you
31
+ should know how to do that yourself.
32
+
33
+ You should be able to just fork the repo and run `bundle && rake` to see the
34
+ tests running.
35
+
36
+ We use [Appraisal](//github.com/thoughtbot/appraisal) to test against multiple versions of
37
+ Rails, so you can read up on that and use it to test against all the Rails
38
+ versions we support or against a specific one.
39
+
40
+ ### How to
41
+
42
+ If you're fixing a bug then please arrange your pull request in two commits, the
43
+ first one will be a test that demonstrates the bug, that test will be failing
44
+ when you create it. The second commit will be the code change that fixes the
45
+ bug.
46
+
47
+ Don't let this be a blocker for you, I'm not saying you have to do TDD. I don't
48
+ care whether you actually write the test first, or the code first, I just care
49
+ about the order of the commits. Those with experience in reviewing PRs will know
50
+ why. I can grab your PR, roll it back to `HEAD^` and run the test, seeing it
51
+ fail and confirming that your test works, then roll it back to the head of your
52
+ branch and see your code fixing the test. It makes it very easy to review a PR.
53
+
54
+ You _can_ submit a bugfix without a test, although those take **MUCH** longer to
55
+ review because it's often hard to work out what problem you're solving.
56
+
57
+ Also, it's up to you whether you want to create an issue in github first. I'd
58
+ recommend that you do because it gives a good place to discuss the details of
59
+ the issue.
60
+
61
+ Also, feel free to submit ideas as PRs, just make sure you put it clearly in the
62
+ text that this is not ready for merge yet.
data/Gemfile ADDED
@@ -0,0 +1,9 @@
1
+ source "http://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in acl9.gemspec
4
+ gemspec
5
+
6
+ gem 'appraisal'
7
+ gem 'tapout'
8
+ gem 'minitap'
9
+ gem 'byebug'
data/Gemfile.lock ADDED
@@ -0,0 +1,141 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ acl9 (2.1.1)
5
+ rails (~> 4.0)
6
+
7
+ GEM
8
+ remote: http://rubygems.org/
9
+ specs:
10
+ actionmailer (4.2.5.1)
11
+ actionpack (= 4.2.5.1)
12
+ actionview (= 4.2.5.1)
13
+ activejob (= 4.2.5.1)
14
+ mail (~> 2.5, >= 2.5.4)
15
+ rails-dom-testing (~> 1.0, >= 1.0.5)
16
+ actionpack (4.2.5.1)
17
+ actionview (= 4.2.5.1)
18
+ activesupport (= 4.2.5.1)
19
+ rack (~> 1.6)
20
+ rack-test (~> 0.6.2)
21
+ rails-dom-testing (~> 1.0, >= 1.0.5)
22
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
23
+ actionview (4.2.5.1)
24
+ activesupport (= 4.2.5.1)
25
+ builder (~> 3.1)
26
+ erubis (~> 2.7.0)
27
+ rails-dom-testing (~> 1.0, >= 1.0.5)
28
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
29
+ activejob (4.2.5.1)
30
+ activesupport (= 4.2.5.1)
31
+ globalid (>= 0.3.0)
32
+ activemodel (4.2.5.1)
33
+ activesupport (= 4.2.5.1)
34
+ builder (~> 3.1)
35
+ activerecord (4.2.5.1)
36
+ activemodel (= 4.2.5.1)
37
+ activesupport (= 4.2.5.1)
38
+ arel (~> 6.0)
39
+ activesupport (4.2.5.1)
40
+ i18n (~> 0.7)
41
+ json (~> 1.7, >= 1.7.7)
42
+ minitest (~> 5.1)
43
+ thread_safe (~> 0.3, >= 0.3.4)
44
+ tzinfo (~> 1.1)
45
+ ansi (1.5.0)
46
+ appraisal (2.1.0)
47
+ bundler
48
+ rake
49
+ thor (>= 0.14.0)
50
+ arel (6.0.3)
51
+ builder (3.2.2)
52
+ byebug (8.2.2)
53
+ codeclimate-test-reporter (0.4.8)
54
+ simplecov (>= 0.7.1, < 1.0.0)
55
+ concurrent-ruby (1.0.1)
56
+ docile (1.1.5)
57
+ erubis (2.7.0)
58
+ globalid (0.3.6)
59
+ activesupport (>= 4.1.0)
60
+ i18n (0.7.0)
61
+ json (1.8.3)
62
+ loofah (2.0.3)
63
+ nokogiri (>= 1.5.9)
64
+ mail (2.6.3)
65
+ mime-types (>= 1.16, < 3)
66
+ mime-types (2.99.1)
67
+ mini_portile2 (2.0.0)
68
+ minitap (0.5.3)
69
+ minitest (~> 5.0)
70
+ minitest-reporter-api (>= 0.0.2)
71
+ tapout (>= 0.3.0)
72
+ minitest (5.8.4)
73
+ minitest-reporter-api (0.0.5)
74
+ minitest (~> 5.0)
75
+ nokogiri (1.6.7.2)
76
+ mini_portile2 (~> 2.0.0.rc2)
77
+ rack (1.6.4)
78
+ rack-test (0.6.3)
79
+ rack (>= 1.0)
80
+ rails (4.2.5.1)
81
+ actionmailer (= 4.2.5.1)
82
+ actionpack (= 4.2.5.1)
83
+ actionview (= 4.2.5.1)
84
+ activejob (= 4.2.5.1)
85
+ activemodel (= 4.2.5.1)
86
+ activerecord (= 4.2.5.1)
87
+ activesupport (= 4.2.5.1)
88
+ bundler (>= 1.3.0, < 2.0)
89
+ railties (= 4.2.5.1)
90
+ sprockets-rails
91
+ rails-deprecated_sanitizer (1.0.3)
92
+ activesupport (>= 4.2.0.alpha)
93
+ rails-dom-testing (1.0.7)
94
+ activesupport (>= 4.2.0.beta, < 5.0)
95
+ nokogiri (~> 1.6.0)
96
+ rails-deprecated_sanitizer (>= 1.0.1)
97
+ rails-html-sanitizer (1.0.3)
98
+ loofah (~> 2.0)
99
+ railties (4.2.5.1)
100
+ actionpack (= 4.2.5.1)
101
+ activesupport (= 4.2.5.1)
102
+ rake (>= 0.8.7)
103
+ thor (>= 0.18.1, < 2.0)
104
+ rake (10.5.0)
105
+ simplecov (0.11.2)
106
+ docile (~> 1.1.0)
107
+ json (~> 1.8)
108
+ simplecov-html (~> 0.10.0)
109
+ simplecov-html (0.10.0)
110
+ sprockets (3.5.2)
111
+ concurrent-ruby (~> 1.0)
112
+ rack (> 1, < 3)
113
+ sprockets-rails (3.0.3)
114
+ actionpack (>= 4.0)
115
+ activesupport (>= 4.0)
116
+ sprockets (>= 3.0.0)
117
+ sqlite3 (1.3.11)
118
+ tapout (0.4.5)
119
+ ansi
120
+ json
121
+ thor (0.19.1)
122
+ thread_safe (0.3.5)
123
+ tzinfo (1.2.2)
124
+ thread_safe (~> 0.1)
125
+ yard (0.8.7.6)
126
+
127
+ PLATFORMS
128
+ ruby
129
+
130
+ DEPENDENCIES
131
+ acl9!
132
+ appraisal
133
+ byebug
134
+ codeclimate-test-reporter
135
+ minitap
136
+ sqlite3
137
+ tapout
138
+ yard
139
+
140
+ BUNDLED WITH
141
+ 1.11.2
data/LICENSE ADDED
@@ -0,0 +1,9 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2014 Oleg Dashevskii
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6
+
7
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8
+
9
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.